summaryrefslogtreecommitdiff
path: root/rts/RtsUtils.c
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-07-24 22:12:44 +0000
committerIan Lynagh <igloo@earth.li>2009-07-24 22:12:44 +0000
commit1bae6cc54e9a0c87284201e468a7a8308fa47d1a (patch)
treec7cc3cbeec0dac77dc4137435b9695be4ef3c779 /rts/RtsUtils.c
parent1e50fd4185479a62e02d987bdfcb1c62712859ca (diff)
downloadhaskell-1bae6cc54e9a0c87284201e468a7a8308fa47d1a.tar.gz
Fix a warning on Windows
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r--rts/RtsUtils.c2
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;
}
}