Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorJohannes Sixt <johannes.sixt@telecom.at>2007-03-23 12:57:05 +0300
committerJohannes Sixt <johannes.sixt@telecom.at>2008-06-23 15:40:30 +0400
commit82f8d969f581c4bd4a782565709466046d962d81 (patch)
tree5f7c4a379ba3e08adfc7f1cb5dd08317afa635ba /compat
parenta42a0c2e715d6783a6f9b75a8f2c9a48bf499c47 (diff)
Windows: Fix PRIuMAX definition.
Since GIT calls into Microsoft's MSVCRT.DLL, it must use the printf format that this DLL uses for 64-bit integers, which is %I64u instead of %llu. Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'compat')
-rw-r--r--compat/mingw.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h
index 46fd8da06e..fad855ef99 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -161,3 +161,4 @@ int mingw_rename(const char*, const char*);
#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
#define PATH_SEP ';'
+#define PRIuMAX "I64u"