aboutsummaryrefslogtreecommitdiff
path: root/src/hostlist
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
committerChristian Grothoff <christian@grothoff.org>2016-05-06 14:44:08 +0000
commite8cf81fdb3fdaef59b49da8f6e952a3225ab326e (patch)
tree4e5f75d44a9121b32895fdfc5a4177052a7d923d /src/hostlist
parentae8cb91d9961899075a892a3110204bc139c2eb6 (diff)
downloadgnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.tar.gz
gnunet-e8cf81fdb3fdaef59b49da8f6e952a3225ab326e.zip
fixing compiler warnings
Diffstat (limited to 'src/hostlist')
-rw-r--r--src/hostlist/gnunet-daemon-hostlist_server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hostlist/gnunet-daemon-hostlist_server.c b/src/hostlist/gnunet-daemon-hostlist_server.c
index 5b45af831..5c7b8887e 100644
--- a/src/hostlist/gnunet-daemon-hostlist_server.c
+++ b/src/hostlist/gnunet-daemon-hostlist_server.c
@@ -479,8 +479,8 @@ adv_transmit_ready (void *cls,
479 (unsigned int) transmission_size); 479 (unsigned int) transmission_size);
480 hostlist_adv_count++; 480 hostlist_adv_count++;
481 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 481 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
482 " # Sent advertisement message: %u\n", 482 " # Sent advertisement message: %llu\n",
483 hostlist_adv_count); 483 (unsigned long long) hostlist_adv_count);
484 GNUNET_STATISTICS_update (stats, 484 GNUNET_STATISTICS_update (stats,
485 gettext_noop ("# hostlist advertisements send"), 1, 485 gettext_noop ("# hostlist advertisements send"), 1,
486 GNUNET_NO); 486 GNUNET_NO);
@@ -520,7 +520,7 @@ connect_handler (void *cls,
520 } 520 }
521 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 521 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
522 "Asked CORE to transmit advertisement message with a size of %u bytes to peer `%s'\n", 522 "Asked CORE to transmit advertisement message with a size of %u bytes to peer `%s'\n",
523 size, 523 (unsigned int) size,
524 GNUNET_i2s (peer)); 524 GNUNET_i2s (peer));
525 if (NULL == 525 if (NULL ==
526 (th = GNUNET_CORE_notify_transmit_ready (core, GNUNET_YES, 526 (th = GNUNET_CORE_notify_transmit_ready (core, GNUNET_YES,