summaryrefslogtreecommitdiff
path: root/rts/Stats.c
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-04-27 13:00:48 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-04-27 13:00:48 +0000
commitbd78c23d9f195c2b62b7788f8506ac54d07772e0 (patch)
tree1b087707d787a8200b15b1964a94de67dd499d64 /rts/Stats.c
parent62e4230b4597192b6b47cde72ecd8629a370b4ee (diff)
downloadhaskell-bd78c23d9f195c2b62b7788f8506ac54d07772e0.tar.gz
fix a warning
Diffstat (limited to 'rts/Stats.c')
-rw-r--r--rts/Stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Stats.c b/rts/Stats.c
index 28d09bdbed..f0f61b25b4 100644
--- a/rts/Stats.c
+++ b/rts/Stats.c
@@ -578,7 +578,7 @@ statDescribeGens(void)
if (s != 0) {
debugBelch("%36s","");
}
- debugBelch("%6d %8d %8d %8d\n", s, step->n_blocks,
+ debugBelch("%6d %8d %8ld %8d\n", s, step->n_blocks,
live, lge);
}
}