Closed
Description
As mentioned in https://public-inbox.org/git/xmqqsgzr2nkk.fsf@gitster-ct.c.googlers.com/t/#u:
The %lld
format is supported on Linux and macOS, but not on Windows. Therefore, we use PRIdMAX
instead and a cast the parameter to intmax_t
.
The fact that PRIdMAX
is used without any fallback definition in git-compat-util.h
is a pretty good sign that we can drop the fallback for PRIuMAX
, too.