aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-11-15 10:09:42 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-11-15 10:09:42 +0000
commit6a3328d13dcadae5254bb3eb17c2ea2e184c84fc (patch)
treee97bd78fa07d9740830e9409ecb7ff6af36b9d21
parentbe439fcd10eb22d3b591c65fe5d79afb481ee1ff (diff)
downloadgnunet-6a3328d13dcadae5254bb3eb17c2ea2e184c84fc.tar.gz
gnunet-6a3328d13dcadae5254bb3eb17c2ea2e184c84fc.zip
- fix for mantis 2639
-rw-r--r--src/transport/plugin_transport_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index c4ea37ee2..2e08d1a27 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -985,7 +985,7 @@ dequeue (struct Plugin *plugin, struct UDP_MessageWrapper * udpw)
985 { 985 {
986 GNUNET_STATISTICS_update (plugin->env->stats, 986 GNUNET_STATISTICS_update (plugin->env->stats,
987 "# UDP, total, bytes in buffers", 987 "# UDP, total, bytes in buffers",
988 -udpw->msg_size, GNUNET_NO); 988 (long long) -udpw->msg_size, GNUNET_NO);
989 plugin->bytes_in_buffer -= udpw->msg_size; 989 plugin->bytes_in_buffer -= udpw->msg_size;
990 } 990 }
991 GNUNET_STATISTICS_update (plugin->env->stats, 991 GNUNET_STATISTICS_update (plugin->env->stats,