From: Nathan S. Evans Date: Fri, 5 Feb 2010 12:12:46 +0000 (+0000) Subject: debug X-Git-Tag: initial-import-from-subversion-38251~22783 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=26493e327f40c4604bb559ca05fab46f622201ec;p=oweals%2Fgnunet.git debug --- diff --git a/src/transport/gnunet-service-transport.c b/src/transport/gnunet-service-transport.c index 1b6537f4a..4df3d7c29 100644 --- a/src/transport/gnunet-service-transport.c +++ b/src/transport/gnunet-service-transport.c @@ -859,7 +859,7 @@ update_quota (struct NeighborList *n) GNUNET_log (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK, _ - ("Update quota: last received is %u, allowed is %u\n"), n->last_received, allowed); + ("Update quota: last received is %llu, allowed is %u\n"), n->last_received, allowed); if (n->last_received < allowed) { @@ -885,7 +885,7 @@ update_quota (struct NeighborList *n) GNUNET_log (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK, _ - ("LAST RECEIVED: %u greater than allowed : %u\n"), n->last_received, allowed); + ("LAST RECEIVED: %llu greater than allowed : %u\n"), n->last_received, allowed); /* more than twice the allowed rate! */ n->quota_violation_count += 10; }