Make exit stats compile on 64-bit machines, too.

This commit is contained in:
Karsten Loesing 2009-07-16 22:29:55 +02:00 committed by Nick Mathewson
parent c0a2d7dc73
commit b71bbdc69a

View File

@ -1418,7 +1418,7 @@ write_exit_stats(time_t when)
EXIT_STATS_ROUND_UP_BYTES); EXIT_STATS_ROUND_UP_BYTES);
other_bytes /= 1024; other_bytes /= 1024;
if (fprintf(out, "%sother="U64_FORMAT"\n", if (fprintf(out, "%sother="U64_FORMAT"\n",
comma ? "," : "", other_bytes)<0) comma ? "," : "", U64_PRINTF_ARG(other_bytes))<0)
goto done; goto done;
} }
/* streams-opened port=num,.. */ /* streams-opened port=num,.. */