aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-proxy.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-02 09:46:48 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-02 09:47:05 +0100
commitab31d0d5b13f9361f6312c4eadbb2054922b1a61 (patch)
treea4ab179ae577e7cbdc11899a1a683c8314e37c4c /src/gns/gnunet-gns-proxy.c
parent9ba4c1d15e6bcb20c47dff1067ab76e86d7c0f8a (diff)
downloadgnunet-ab31d0d5b13f9361f6312c4eadbb2054922b1a61.tar.gz
gnunet-ab31d0d5b13f9361f6312c4eadbb2054922b1a61.zip
fix compiler warning for format string
Diffstat (limited to 'src/gns/gnunet-gns-proxy.c')
-rw-r--r--src/gns/gnunet-gns-proxy.c3
1 files changed, 2 insertions, 1 deletions
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,
1761 { 1761 {
1762 1762
1763 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1763 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1764 "Processing %lu bytes UPLOAD\n", *upload_data_size); 1764 "Processing %u bytes UPLOAD\n",
1765 (unsigned int) *upload_data_size);
1765 1766
1766 /* FIXME: This must be set or a header with Transfer-Encoding: chunked. Else 1767 /* FIXME: This must be set or a header with Transfer-Encoding: chunked. Else
1767 * upload callback is not called! 1768 * upload callback is not called!