summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-18 19:21:39 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-18 19:21:39 +0000
commitc2a2c00a42d709f75349e9dbfa114848202342d8 (patch)
tree01009417efea887717c5e15e66bfd852da888e33 /src
parentc6f79bc103609f23c53d789d1b725251a41740ee (diff)
- Fixed some other invalid conversion specifiers
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1761 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r--src/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index 1069f99..5c6e8a6 100644
--- a/src/send.c
+++ b/src/send.c
@@ -110,7 +110,7 @@ send_message(struct Client *to, char *buf, int len)
{
if (IsServer(to))
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
- "Max SendQ limit exceeded for %s: %lu > %lu",
+ "Max SendQ limit exceeded for %s: %lu > %u",
get_client_name(to, HIDE_IP),
(unsigned long)(dbuf_length(&to->localClient->buf_sendq) + len),
get_sendq(&to->localClient->confs));