summaryrefslogtreecommitdiffhomepage
path: root/include/stc
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-10-21 09:31:17 +0200
committerTyge Løvset <[email protected]>2022-10-21 09:31:17 +0200
commit3eb08b0372dd669af535a368e8a8cdb8a9c793c5 (patch)
tree05d70cd2fe623eddc94280767c88332d8773405f /include/stc
parent2cefae32252f3051f75f44f4718a62a1210bd3a7 (diff)
downloadSTC-modified-3eb08b0372dd669af535a368e8a8cdb8a9c793c5.tar.gz
STC-modified-3eb08b0372dd669af535a368e8a8cdb8a9c793c5.zip
Renamed size_t formatting macro c_zu to c_ZU (for replacing %zu on mingw64).
Diffstat (limited to 'include/stc')
-rw-r--r--include/stc/ccommon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stc/ccommon.h b/include/stc/ccommon.h
index 5ecb42f8..fb4129b3 100644
--- a/include/stc/ccommon.h
+++ b/include/stc/ccommon.h
@@ -31,9 +31,9 @@
#include <assert.h>
#if SIZE_MAX == UINT32_MAX
-# define c_zu PRIu32
+# define c_ZU PRIu32
#elif SIZE_MAX == UINT64_MAX
-# define c_zu PRIu64
+# define c_ZU PRIu64
#endif
#if defined(_MSC_VER)