From c5156045e6322f362f13bfa2947f908aac04cdc4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 22 Mar 2010 14:40:36 -0700 Subject: [PATCH] Change %d to %ld for pointer diffs without C99. --- src/microcode/gcloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.25.1