Commit 780bea6e by Vicent Marti

mingw: Fix printf identifiers

parent c103d7b4
......@@ -65,6 +65,13 @@
# define PRIuZ "zu"
#endif
/* Define the printf format for 64 bit types */
#if defined(__MINGW32__)
# define PRIdMAX "I64d"
#else
# define PRIdMAX "lld"
#endif
/* Micosoft Visual C/C++ */
#if defined(_MSC_VER)
/* disable "deprecated function" warnings */
......
......@@ -167,7 +167,7 @@ int git_config_delete(git_config *cfg, const char *name)
int git_config_set_long(git_config *cfg, const char *name, long long value)
{
char str_value[32]; /* All numbers should fit in here */
p_snprintf(str_value, sizeof(str_value), "%lld", value);
p_snprintf(str_value, sizeof(str_value), "%" PRIdMAX, value);
return git_config_set_string(cfg, name, str_value);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment