From b867fa4721ecb0a1d98bf14cb6593e649704099f Mon Sep 17 00:00:00 2001 From: henri Date: Mon, 22 Apr 2013 19:36:55 +0000 Subject: [PATCH] Fixed ID type in format string. --- nsock/src/nsock_connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsock/src/nsock_connect.c b/nsock/src/nsock_connect.c index 51e127e24..db61a6253 100644 --- a/nsock/src/nsock_connect.c +++ b/nsock/src/nsock_connect.c @@ -166,8 +166,8 @@ void nsock_connect_internal(mspool *ms, msevent *nse, int type, int proto, struc && (nse->handler != nsock_proxy_ev_dispatch)) { /* for reentrancy */ struct proxy_node *current; - nsock_log_debug_all(ms, "TCP connection request (EID %d) redirected through proxy chain", - nse->id); + nsock_log_debug_all(ms, "TCP connection request (EID %lu) redirected through proxy chain", + (long)nse->id); current = proxy_ctx_node_current(iod->px_ctx); assert(current != NULL);