Skip to content

Commit f52d466

Browse files
committed
Workaround gcc -Wformat -Wformat-extra-args warnings
The MinGW build of gcc doesn't handle %zu and gives warnings: DOH/memory.c: In function 'allocation_failed': DOH/memory.c:262:42: warning: unknown conversion type character 'z' in format [-Wformat=] 262 | fprintf(stderr, "Failed to allocate %zu bytes\n", size); | ^ DOH/memory.c:262:21: warning: too many arguments for format [-Wformat-extra-args] 262 | fprintf(stderr, "Failed to allocate %zu bytes\n", size); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Just casting to unsigned long seems good enough for a failure message where the value is unlikely to be truncated and the actual value reported is not particularly significant.
1 parent 186b896 commit f52d466

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Source/DOH/memory.c

-8
Original file line numberDiff line numberDiff line change
@@ -258,17 +258,9 @@ static void allocation_failed(size_t n, size_t size) {
258258
/* Report and exit as directly as possible to try to avoid further issues due
259259
* to lack of memory. */
260260
if (n == 1) {
261-
#if defined __STDC_VERSION__ && __STDC_VERSION__-0 >= 199901L
262-
fprintf(stderr, "Failed to allocate %zu bytes\n", size);
263-
#else
264261
fprintf(stderr, "Failed to allocate %lu bytes\n", (unsigned long)size);
265-
#endif
266262
} else {
267-
#if defined __STDC_VERSION__ && __STDC_VERSION__-0 >= 199901L
268-
fprintf(stderr, "Failed to allocate %zu*%zu bytes\n", n, size);
269-
#else
270263
fprintf(stderr, "Failed to allocate %lu*%lu bytes\n", (unsigned long)n, (unsigned long)size);
271-
#endif
272264
}
273265
DohExit(EXIT_FAILURE);
274266
}

0 commit comments

Comments
 (0)