diff options
author | Ian Lynagh <igloo@earth.li> | 2009-07-24 22:12:44 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-07-24 22:12:44 +0000 |
commit | 1bae6cc54e9a0c87284201e468a7a8308fa47d1a (patch) | |
tree | c7cc3cbeec0dac77dc4137435b9695be4ef3c779 /rts/RtsUtils.c | |
parent | 1e50fd4185479a62e02d987bdfcb1c62712859ca (diff) | |
download | haskell-1bae6cc54e9a0c87284201e468a7a8308fa47d1a.tar.gz |
Fix a warning on Windows
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r-- | rts/RtsUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index 6906619439..ed082a31f4 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; } } |