summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_blockamsg.cpp1
-rw-r--r--src/modules/m_safelist.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_blockamsg.cpp b/src/modules/m_blockamsg.cpp
index 8af55de0f..bb9512754 100644
--- a/src/modules/m_blockamsg.cpp
+++ b/src/modules/m_blockamsg.cpp
@@ -201,4 +201,3 @@ extern "C" void * init_module( void )
{
return new ModuleBlockAmsgFactory;
}
-
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);