diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-01-18 19:21:39 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-01-18 19:21:39 +0000 |
commit | c2a2c00a42d709f75349e9dbfa114848202342d8 (patch) | |
tree | 01009417efea887717c5e15e66bfd852da888e33 /src | |
parent | c6f79bc103609f23c53d789d1b725251a41740ee (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |