From: Chris Hanson Date: Mon, 22 Mar 2010 21:40:36 +0000 (-0700) Subject: Change %d to %ld for pointer diffs without C99. X-Git-Tag: 20100708-Gtk~76 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c5156045e6322f362f13bfa2947f908aac04cdc4;p=mit-scheme.git Change %d to %ld for pointer diffs without C99. --- diff --git a/src/microcode/gcloop.c b/src/microcode/gcloop.c index 52dfcdf0c..c5103d7bb 100644 --- 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/%ld", #endif (newspace_next - newspace_start), (tospace_next - tospace_start));