From: Roger Dingledine Date: Fri, 6 Aug 2004 08:40:55 +0000 (+0000) Subject: they're uint64 and uint32, not int and int X-Git-Tag: tor-0.0.8pre3~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=967a762fe14033298bb4e1f0310090e370930f3a;p=thirdparty%2Ftor.git they're uint64 and uint32, not int and int svn:r2152 --- 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));