diff options
author | Christian Grothoff <christian@grothoff.org> | 2012-11-15 11:52:39 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2012-11-15 11:52:39 +0000 |
commit | ff4cb80c8a162d55ce1639f59db0ba3ce3f17cb5 (patch) | |
tree | 8af7fb9c519fb2713d1da17532e4fd3dbb8b2c77 | |
parent | 57ce91e29030ed0608511491aaf7b4b45fedb2d4 (diff) |
-fix the fix
-rw-r--r-- | src/transport/plugin_transport_udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c index 2e08d1a277..48ae61230f 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) { GNUNET_STATISTICS_update (plugin->env->stats, "# UDP, total, bytes in buffers", - (long long) -udpw->msg_size, GNUNET_NO); + - (long long) udpw->msg_size, GNUNET_NO); plugin->bytes_in_buffer -= udpw->msg_size; } GNUNET_STATISTICS_update (plugin->env->stats, |