aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-06 15:23:59 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-06 15:23:59 +0000
commita5478413c09a56880b6d8a1a35eb64fa8ee151f3 (patch)
tree483ec1913a7084c694829410f0e2f20d4a367f1f
parent59a2057d60ff87ef8e7fd25432344cd0d303faa3 (diff)
downloadgnunet-a5478413c09a56880b6d8a1a35eb64fa8ee151f3.tar.gz
gnunet-a5478413c09a56880b6d8a1a35eb64fa8ee151f3.zip
fix compiler warnings
-rw-r--r--src/dht/test_dht_monitor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dht/test_dht_monitor.c b/src/dht/test_dht_monitor.c
index 0e92d0853..0212c900b 100644
--- a/src/dht/test_dht_monitor.c
+++ b/src/dht/test_dht_monitor.c
@@ -332,7 +332,8 @@ monitor_res_cb (void *cls,
332 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 332 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
333 "%u got a REPLY message for key %s with %u bytes\n", 333 "%u got a REPLY message for key %s with %u bytes\n",
334 i, 334 i,
335 GNUNET_h2s (key), size); 335 GNUNET_h2s (key),
336 (unsigned int) size);
336 monitor_counter++; 337 monitor_counter++;
337} 338}
338 339