Skip to content
Snippets Groups Projects
Commit 967a762f authored by Roger Dingledine's avatar Roger Dingledine
Browse files

they're uint64 and uint32, not int and int

svn:r2152
parent f32e3404
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment