From 1bae6cc54e9a0c87284201e468a7a8308fa47d1a Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 24 Jul 2009 22:12:44 +0000 Subject: [PATCH] Fix a warning on Windows --- rts/RtsUtils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index 6906619..ed082a3 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -111,7 +111,7 @@ shutdownAllocator(void) if (a == NULL) return; IF_DEBUG(sanity, debugBelch("Warning: %ld bytes at %p still allocated at shutdown\n", - a->len, a->addr);) + (long)a->len, a->addr);) prev = a; } } -- 1.7.10.4