Change %d to %ld for pointer diffs without C99.
authorChris Hanson <org/chris-hanson/cph>
Mon, 22 Mar 2010 21:40:36 +0000 (14:40 -0700)
committerChris Hanson <org/chris-hanson/cph>
Mon, 22 Mar 2010 21:40:36 +0000 (14:40 -0700)
src/microcode/gcloop.c

index 52dfcdf0c729b2797004b0a5e73835c089c88aae..c5103d7bb800d2f26f23323e5177f79cff6c6fe6 100644 (file)
@@ -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));