aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_scheduling.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-24 14:11:17 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-24 14:11:17 +0000
commit6e03d509075d2cd38fabab6568b4c2bf2451505e (patch)
tree245379e96866662db100eb35c75be1206f1f661b /src/ats/gnunet-service-ats_scheduling.c
parentc77bdc9b0fec7ce8201c5f3f5c915485abaf2dcd (diff)
downloadgnunet-6e03d509075d2cd38fabab6568b4c2bf2451505e.tar.gz
gnunet-6e03d509075d2cd38fabab6568b4c2bf2451505e.zip
-fixing misc format strings
Diffstat (limited to 'src/ats/gnunet-service-ats_scheduling.c')
-rw-r--r--src/ats/gnunet-service-ats_scheduling.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ats/gnunet-service-ats_scheduling.c b/src/ats/gnunet-service-ats_scheduling.c
index 13aeb2f02..48fe536c1 100644
--- a/src/ats/gnunet-service-ats_scheduling.c
+++ b/src/ats/gnunet-service-ats_scheduling.c
@@ -146,9 +146,10 @@ GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity
146 strcpy (&addrp[plugin_addr_len], plugin_name); 146 strcpy (&addrp[plugin_addr_len], plugin_name);
147 147
148 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 148 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
149 "ATS sends quota for peer `%s': (in/out) %lu/%lu\n", 149 "ATS sends quota for peer `%s': (in/out) %u/%u\n",
150 GNUNET_i2s (peer), ntohl (bandwidth_in.value__), 150 GNUNET_i2s (peer),
151 ntohl (bandwidth_out.value__)); 151 (unsigned int) ntohl (bandwidth_in.value__),
152 (unsigned int) ntohl (bandwidth_out.value__));
152 153
153 GNUNET_SERVER_notification_context_unicast (nc, my_client, &msg->header, 154 GNUNET_SERVER_notification_context_unicast (nc, my_client, &msg->header,
154 GNUNET_YES); 155 GNUNET_YES);