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

make "%llu" less likely to warn on weird platforms

svn:r2209
parent 6453a255
No related branches found
No related tags found
Loading
......@@ -965,7 +965,7 @@ static void dumpstats(int severity) {
if (stats_n_seconds_uptime)
log(severity,"Average bandwidth used: %llu/%ld = %d bytes/sec",
stats_n_bytes_read, stats_n_seconds_uptime,
(unsigned long long) stats_n_bytes_read, stats_n_seconds_uptime,
(int) (stats_n_bytes_read/stats_n_seconds_uptime));
rep_hist_dump_stats(now,severity);
......
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