diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-07-09 20:39:14 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-07-09 20:39:14 +0200 |
commit | cb9ba488e47f4f836ed85841d66e3930b1f6e10f (patch) | |
tree | 723e35931f7ea8290d6d1224a95557b7aa57c59f /vm | |
parent | 340eeab9e5a99c5cdc5020395827e4756377ef6b (diff) | |
download | gnumach-cb9ba488e47f4f836ed85841d66e3930b1f6e10f.tar.gz gnumach-cb9ba488e47f4f836ed85841d66e3930b1f6e10f.tar.bz2 gnumach-cb9ba488e47f4f836ed85841d66e3930b1f6e10f.zip |
Fix bogus format
Diffstat (limited to 'vm')
-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; |