From 499f154bf12fe15c6aa1740100e4545a71490be1 Mon Sep 17 00:00:00 2001 From: Luca Dariz Date: Tue, 28 Jun 2022 12:10:51 +0200 Subject: fix warnings for 32 bit builds Signed-off-by: Luca Dariz Message-Id: <20220628101054.446126-13-luca@orpolo.org> --- 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 7fe3e141..9f5eb13d 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -737,7 +737,7 @@ restart: max_size = size + mask; if (max_size < size) { - printf("max_size %x got smaller than size %x with mask %lx\n", + printf("max_size %lx got smaller than size %lx with mask %lx\n", max_size, size, mask); goto error; } -- cgit v1.2.3