mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 10:12:15 +01:00
Make exit stats compile on 64-bit machines, too.
This commit is contained in:
parent
c0a2d7dc73
commit
b71bbdc69a
@ -1418,7 +1418,7 @@ write_exit_stats(time_t when)
|
||||
EXIT_STATS_ROUND_UP_BYTES);
|
||||
other_bytes /= 1024;
|
||||
if (fprintf(out, "%sother="U64_FORMAT"\n",
|
||||
comma ? "," : "", other_bytes)<0)
|
||||
comma ? "," : "", U64_PRINTF_ARG(other_bytes))<0)
|
||||
goto done;
|
||||
}
|
||||
/* streams-opened port=num,.. */
|
||||
|
Loading…
Reference in New Issue
Block a user