Closed
Description
As mentioned in https://public-inbox.org/git/[email protected]/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.