From: Christian Grothoff Date: Thu, 25 Mar 2010 13:24:09 +0000 (+0000) Subject: fix X-Git-Tag: initial-import-from-subversion-38251~22374 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=129169c3d00ff3f1b2cca813a1f0724b51ee13d6;p=oweals%2Fgnunet.git fix --- diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c index 53006a6d6..5c8145002 100644 --- a/src/core/gnunet-service-core.c +++ b/src/core/gnunet-service-core.c @@ -1658,9 +1658,9 @@ select_messages (struct Neighbour *n, } #if DEBUG_CORE GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Selected %u/%u bytes of %u/%u plaintext messages for transmission to `%4s'.\n", - off, tsize, - queue_size, MAX_PEER_QUEUE_SIZE, + "Selected %llu/%llu bytes of %u/%u plaintext messages for transmission to `%4s'.\n", + (unsigned long long) off, (unsigned long long) tsize, + queue_size, (unsigned int) MAX_PEER_QUEUE_SIZE, GNUNET_i2s (&n->peer)); #endif return off;