From: Christian Grothoff Date: Mon, 2 Jan 2017 08:46:48 +0000 (+0100) Subject: fix compiler warning for format string X-Git-Tag: taler-0.2.1~540 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ab31d0d5b13f9361f6312c4eadbb2054922b1a61;p=oweals%2Fgnunet.git fix compiler warning for format string --- diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c index ef9c7bf62..3a38970a8 100644 --- a/src/gns/gnunet-gns-proxy.c +++ b/src/gns/gnunet-gns-proxy.c @@ -1761,7 +1761,8 @@ create_response (void *cls, { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Processing %lu bytes UPLOAD\n", *upload_data_size); + "Processing %u bytes UPLOAD\n", + (unsigned int) *upload_data_size); /* FIXME: This must be set or a header with Transfer-Encoding: chunked. Else * upload callback is not called!