diff options
| author | Tyge Løvset <[email protected]> | 2022-10-21 09:31:17 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-10-21 09:31:17 +0200 |
| commit | 3eb08b0372dd669af535a368e8a8cdb8a9c793c5 (patch) | |
| tree | 05d70cd2fe623eddc94280767c88332d8773405f /include/stc | |
| parent | 2cefae32252f3051f75f44f4718a62a1210bd3a7 (diff) | |
| download | STC-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.h | 4 |
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) |
