From 8795f9fb4f6a749621603e315993aaeb19ca0342 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sat, 16 Nov 2024 23:20:27 +0100 Subject: Fix 64b builds --- libs/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/common.c b/libs/common.c index 59846e8ef..b66d95795 100644 --- a/libs/common.c +++ b/libs/common.c @@ -41,8 +41,8 @@ _get_module_info (void) { if (routines[i] != NULL) { - printf ("Routine #%d (%s): set to address %x\n", i, - routine_to_str (i), (vm_size_t) routines[i]); + printf ("Routine #%d (%s): set to address %p\n", i, + routine_to_str (i), routines[i]); } } } -- cgit v1.2.3