From 68da120812b1e593c76ea75d0d591f47b6a4f402 Mon Sep 17 00:00:00 2001 From: om Date: Thu, 9 Mar 2006 12:40:52 +0000 Subject: Fix printf format to get rid of compile warning (using %d for a long, change to %ld) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3587 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_safelist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_safelist.cpp') diff --git a/src/modules/m_safelist.cpp b/src/modules/m_safelist.cpp index c945bc9d9..5b7e0f87c 100644 --- a/src/modules/m_safelist.cpp +++ b/src/modules/m_safelist.cpp @@ -105,7 +105,7 @@ class ListTimer : public InspTimer /* If there are only invisible users on the channel, dont show it */ if (users) { - int counter = snprintf(buffer,MAXBUF,"322 %s %s %d :[+%s] %s",u->nick,chan->name,users,chanmodes(chan,has_user),chan->topic); + int counter = snprintf(buffer,MAXBUF,"322 %s %s %ld :[+%s] %s",u->nick,chan->name,users,chanmodes(chan,has_user),chan->topic); amount_sent += counter + 4 + Srv->GetServerName().length(); log(DEBUG,"m_safelist.so: Sent %ld of safe %ld / 4",amount_sent,u->sendqmax); WriteServ_NoFormat(u->fd,buffer); -- cgit v1.2.3