summaryrefslogtreecommitdiff
path: root/src/common/socket.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-10-11 16:22:31 +0200
committerHaru <haru@dotalux.com>2015-10-11 16:22:31 +0200
commit5fe850132ae05bbf9b4b166f035b672093cc7774 (patch)
tree41ec952ff8dda13dff2c7aebec137bf56d8e312b /src/common/socket.c
parent497510b22278aafaa7dedb8a6c705e8cdd35e9db (diff)
downloadhercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.gz
hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.bz2
hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.xz
hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.zip
Fixed various compiler warnings (follow-up to 5c22b63)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/socket.c')
-rw-r--r--src/common/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/socket.c b/src/common/socket.c
index f1318ab47..b4b67da40 100644
--- a/src/common/socket.c
+++ b/src/common/socket.c
@@ -1523,7 +1523,7 @@ void send_shortlist_add_fd(int fd)
return;// already in the list
if (send_shortlist_count >= ARRAYLENGTH(send_shortlist_array)) {
- ShowDebug("send_shortlist_add_fd: shortlist is full, ignoring... (fd=%d shortlist.count=%d shortlist.length=%"PRIuS")\n",
+ ShowDebug("send_shortlist_add_fd: shortlist is full, ignoring... (fd=%d shortlist.count=%d shortlist.length=%d)\n",
fd, send_shortlist_count, ARRAYLENGTH(send_shortlist_array));
return;
}