summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:20:27 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:20:27 +0100
commit8795f9fb4f6a749621603e315993aaeb19ca0342 (patch)
tree8a2316cfd992b3d5e55e5179a2b46078291ba4f1
parent176c9242377e873c0cac1efe1fbc61ae1ec8ca66 (diff)
Fix 64b buildsclisp
-rw-r--r--libs/common.c4
1 files 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]);
}
}
}