Skip to content

Commit 22669e0

Browse files
committed
win32: do not use non-standard i64 integer suffix on MinGW
1 parent 6cd9d31 commit 22669e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/portability.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#define GG_UINT32_C(x) (x ## U)
6161
#define GG_UINT64_C(x) GG_ULONGLONG(x)
6262

63-
#if NACL_WINDOWS
63+
#if NACL_WINDOWS && defined(_MSC_VER)
6464
#define GG_LONGLONG(x) x##I64
6565
#define GG_ULONGLONG(x) x##UI64
6666
#else

0 commit comments

Comments
 (0)