summaryrefslogtreecommitdiffstats
path: root/src/win32port.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-06-19 17:31:14 (GMT)
committerEvan Martin <martine@danga.com>2012-06-19 17:31:14 (GMT)
commitb3d63db1facc7ee9d14e211cc738f34b702de833 (patch)
tree1f5201433c02a407823722b80161ae1a131a44dd /src/win32port.h
parent350f0fc34d222ba6a45dbbf1e858a51924bf1967 (diff)
downloadNinja-b3d63db1facc7ee9d14e211cc738f34b702de833.zip
Ninja-b3d63db1facc7ee9d14e211cc738f34b702de833.tar.gz
Ninja-b3d63db1facc7ee9d14e211cc738f34b702de833.tar.bz2
switch build log to print hashes as hex
Nico convinced me that it's safe to do this without revving the build log format: the old decimal values will still parse as hex (just as different numbers) and cause a superfluous rebuild.
Diffstat (limited to 'src/win32port.h')
-rw-r--r--src/win32port.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/win32port.h b/src/win32port.h
index 1cc8d12..8b42b38 100644
--- a/src/win32port.h
+++ b/src/win32port.h
@@ -23,6 +23,7 @@ typedef unsigned long long uint64_t;
// printf format specifier for uint64_t, from C99.
#ifndef PRIu64
#define PRIu64 "I64u"
+#define PRIx64 "I64x"
#endif
#endif // NINJA_WIN32PORT_H_