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:
938def9
)
Change %d to %ld for pointer diffs without C99.
author
Chris Hanson
<org/chris-hanson/cph>
Mon, 22 Mar 2010 21:40:36 +0000
(14:40 -0700)
committer
Chris Hanson
<org/chris-hanson/cph>
Mon, 22 Mar 2010 21:40:36 +0000
(14:40 -0700)
src/microcode/gcloop.c
patch
|
blob
|
history
diff --git
a/src/microcode/gcloop.c
b/src/microcode/gcloop.c
index 52dfcdf0c729b2797004b0a5e73835c089c88aae..c5103d7bb800d2f26f23323e5177f79cff6c6fe6 100644
(file)
--- a/
src/microcode/gcloop.c
+++ b/
src/microcode/gcloop.c
@@
-932,7
+932,7
@@
check_newspace_sync (void)
#ifdef HAVE_STDC_99
"mismatch between newspace and tospace ptrs: %td/%td",
#else
- "mismatch between newspace and tospace ptrs: %
d/%
d",
+ "mismatch between newspace and tospace ptrs: %
ld/%l
d",
#endif
(newspace_next - newspace_start),
(tospace_next - tospace_start));