diff options
-rw-r--r-- | vm/vm_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |