From cb9ba488e47f4f836ed85841d66e3930b1f6e10f Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 9 Jul 2024 20:39:14 +0200 Subject: Fix bogus format --- vm/vm_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/vm_map.c') diff --git a/vm/vm_map.c b/vm/vm_map.c index 8a9c6988..56928369 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -754,7 +754,7 @@ restart: assert(end <= (entry->vme_end + entry->gap_size)); if (end > max) { /* Does not respect the allowed maximum */ - printf("%zx does not respect %zx\n", end, max); + printf("%lx does not respect %lx\n", (unsigned long) end, (unsigned long) max); return NULL; } *startp = start; -- cgit v1.2.3