summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}