aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-05-22 08:02:39 -0700
committerChris Robinson <[email protected]>2014-05-22 08:02:39 -0700
commit2b3550b61cf1d937ba74529556781217c3f4730b (patch)
tree4f1b36021ab67c3cf03be4aaada70741c3ece43c /OpenAL32
parent100c059157a67345546b256500ed08b146dab2c1 (diff)
Use an unsigned type for the win32 size_t formatter
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 6bbcfadb..7b1b95da 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -24,7 +24,7 @@
#if defined(_WIN64)
#define SZFMT "%I64u"
#elif defined(_WIN32)
-#define SZFMT "%d"
+#define SZFMT "%u"
#else
#define SZFMT "%zu"
#endif