projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
683cd9f
)
Use %td, not %d, to format ptrdiff_t values with printf.
author
Taylor R Campbell
<campbell@mumble.net>
Sun, 21 Mar 2010 19:29:07 +0000
(15:29 -0400)
committer
Taylor R Campbell
<campbell@mumble.net>
Sun, 21 Mar 2010 19:29:07 +0000
(15:29 -0400)
src/microcode/gcloop.c
patch
|
blob
|
history
diff --git
a/src/microcode/gcloop.c
b/src/microcode/gcloop.c
index 0ab54e044bc7877dc4a3d85e90a5461b212af38e..0e7931cf550fb49036c834bece9a8526a5deddc9 100644
(file)
--- a/
src/microcode/gcloop.c
+++ b/
src/microcode/gcloop.c
@@
-928,7
+928,7
@@
check_newspace_sync (void)
{
if ((newspace_next - newspace_start)
!= (tospace_next - tospace_start))
- std_gc_death ("mismatch between newspace and tospace ptrs: %
d/%
d",
+ std_gc_death ("mismatch between newspace and tospace ptrs: %
td/%t
d",
(newspace_next - newspace_start),
(tospace_next - tospace_start));
}