diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-05-06 15:23:59 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-05-06 15:23:59 +0000 |
commit | a5478413c09a56880b6d8a1a35eb64fa8ee151f3 (patch) | |
tree | 483ec1913a7084c694829410f0e2f20d4a367f1f /src/dht/test_dht_monitor.c | |
parent | 59a2057d60ff87ef8e7fd25432344cd0d303faa3 (diff) |
fix compiler warnings
Diffstat (limited to 'src/dht/test_dht_monitor.c')
-rw-r--r-- | src/dht/test_dht_monitor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dht/test_dht_monitor.c b/src/dht/test_dht_monitor.c index 0e92d0853f..0212c900b6 100644 --- a/src/dht/test_dht_monitor.c +++ b/src/dht/test_dht_monitor.c @@ -332,7 +332,8 @@ monitor_res_cb (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u got a REPLY message for key %s with %u bytes\n", i, - GNUNET_h2s (key), size); + GNUNET_h2s (key), + (unsigned int) size); monitor_counter++; } |