mirror of
https://github.com/git/git.git
synced 2026-03-13 18:33:25 +01:00
This reverts commit 6d3e71d428.
Apparently, GCC >= 4 does not like %I64u as modifier to show unsigned
long longs. However, using %llu -- even if the compiler warning goes
away -- fails spectacularly: The C runtime insists that %llu takes
32-bit numbers.
So for now, we _have_ to live with compiler warnings galore.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>