This commit is contained in:
2026-05-15 16:45:48 -06:00
parent d38e98d90f
commit 5dcf44222f
6 changed files with 62 additions and 23 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ SCM scm_write (SCM x) {
if (SCM_IMP (x)) {
printf ("#<immediate %ld>\n", SCM_UNPACK (x) >> 2);
} else {
printf ("#<heap object %ld>\n", SCM_UNPACK(x));
printf ("#<heap object %lx>\n", SCM_UNPACK(x));
}
return SCM_PACK(NULL);
}