aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index cb15c9f..d37b243 100644
--- a/main.c
+++ b/main.c
@@ -386,7 +386,7 @@ make_optional_header_string(char *s)
static void *
die_oom(size_t bytes)
{
- fprintf(stderr, "Out of memory: %zu bytes unavailable!\n", bytes);
+ fprintf(stderr, "Out of memory: %lu bytes unavailable!\n", (unsigned long)bytes);
exit(1);
}