aboutsummaryrefslogtreecommitdiff
path: root/src/dht
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-06 15:20:10 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-06 15:20:10 +0000
commit8e325aefdaab6aae4567762bd639dfa1db3c4f15 (patch)
treee18e0515ffab51e8871dbf371750b21382691bdc /src/dht
parent221996eb735384bb5478819e4358d2c648a16d7b (diff)
downloadgnunet-8e325aefdaab6aae4567762bd639dfa1db3c4f15.tar.gz
gnunet-8e325aefdaab6aae4567762bd639dfa1db3c4f15.zip
fix compiler warnings
Diffstat (limited to 'src/dht')
-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 6b639e341..0e92d0853 100644
--- a/src/dht/test_dht_monitor.c
+++ b/src/dht/test_dht_monitor.c
@@ -293,7 +293,8 @@ monitor_put_cb (void *cls,
293 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 293 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
294 "%u got a PUT message for key %s with %u bytes\n", 294 "%u got a PUT message for key %s with %u bytes\n",
295 i, 295 i,
296 GNUNET_h2s (key), size); 296 GNUNET_h2s (key),
297 (unsigned int) size);
297 monitor_counter++; 298 monitor_counter++;
298} 299}
299 300