From 26493e327f40c4604bb559ca05fab46f622201ec Mon Sep 17 00:00:00 2001 From: "Nathan S. Evans" Date: Fri, 5 Feb 2010 12:12:46 +0000 Subject: [PATCH] debug --- src/transport/gnunet-service-transport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.25.1