From ab31d0d5b13f9361f6312c4eadbb2054922b1a61 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 2 Jan 2017 09:46:48 +0100 Subject: [PATCH] fix compiler warning for format string --- src/gns/gnunet-gns-proxy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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! -- 2.25.1