From 967a762fe14033298bb4e1f0310090e370930f3a Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 6 Aug 2004 08:40:55 +0000 Subject: [PATCH] they're uint64 and uint32, not int and int svn:r2152 --- src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/main.c b/src/or/main.c index 573b20fc92..d4e6c6a47e 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -963,7 +963,7 @@ static void dumpstats(int severity) { (stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) ); if (stats_n_seconds_uptime) - log(severity,"Average bandwidth used: %d/%d = %d bytes/sec", + log(severity,"Average bandwidth used: %llu/%ld = %d bytes/sec", stats_n_bytes_read, stats_n_seconds_uptime, (int) (stats_n_bytes_read/stats_n_seconds_uptime));