diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-04-27 13:00:48 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-04-27 13:00:48 +0000 |
commit | bd78c23d9f195c2b62b7788f8506ac54d07772e0 (patch) | |
tree | 1b087707d787a8200b15b1964a94de67dd499d64 /rts/Stats.c | |
parent | 62e4230b4597192b6b47cde72ecd8629a370b4ee (diff) | |
download | haskell-bd78c23d9f195c2b62b7788f8506ac54d07772e0.tar.gz |
fix a warning
Diffstat (limited to 'rts/Stats.c')
-rw-r--r-- | rts/Stats.c | 2 |
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); } } |