Prefer long as a 64-bit type instead of long long

This commit is contained in:
Chris Robinson
2013-10-30 12:29:53 -07:00
parent 90a51d7897
commit 7460dd1b08
+2 -2
View File
@@ -57,10 +57,10 @@ typedef ptrdiff_t ALsizeiptrEXT;
#ifndef U64
#if defined(_MSC_VER)
#define U64(x) ((ALuint64)(x##ui64))
#elif SIZEOF_LONG_LONG == 8
#define U64(x) ((ALuint64)(x##ull))
#elif SIZEOF_LONG == 8
#define U64(x) ((ALuint64)(x##ul))
#elif SIZEOF_LONG_LONG == 8
#define U64(x) ((ALuint64)(x##ull))
#endif
#endif