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 /examples/complex.c | |
| 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 'examples/complex.c')
| -rw-r--r-- | examples/complex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/complex.c b/examples/complex.c index 71ee6b0b..c91f95d5 100644 --- a/examples/complex.c +++ b/examples/complex.c @@ -37,7 +37,7 @@ int main() // Put in some data in the structures stack.data[3] = 3.1415927f; - printf("stack size: %" c_zu "\n", FloatStack_size(&stack)); + printf("stack size: %" c_ZU "\n", FloatStack_size(&stack)); StackList list = StackList_init(); StackList_push_back(&list, stack); |
