From: Ian Lynagh Date: Fri, 24 Jul 2009 22:12:44 +0000 (+0000) Subject: Fix a warning on Windows X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=1bae6cc54e9a0c87284201e468a7a8308fa47d1a Fix a warning on Windows --- 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; } }