diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-24 16:45:41 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-24 16:45:41 +0000 |
commit | a1b4e3b88a6987deed7bb7f1bd870b30eef1b475 (patch) | |
tree | 9bd653957e7acf7bbd2af996bc53f182a2a790ec /ghc | |
parent | 4368121d93643f6f108c1dc79ac212bf02e56f98 (diff) | |
download | haskell-a1b4e3b88a6987deed7bb7f1bd870b30eef1b475.tar.gz |
fix a warning
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/rts/GC.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/rts/GC.c b/ghc/rts/GC.c index 4235d3e826..a13cd33afa 100644 --- a/ghc/rts/GC.c +++ b/ghc/rts/GC.c @@ -818,7 +818,7 @@ GarbageCollect ( void (*get_roots)(evac_fn), rtsBool force_major_gc ) } copied += mut_list_size; - IF_DEBUG(gc, debugBelch("mut_list_size: %d (%d vars, %d arrays, %d others)\n", mut_list_size * sizeof(W_), mutlist_MUTVARS, mutlist_MUTARRS, mutlist_OTHERS)); + IF_DEBUG(gc, debugBelch("mut_list_size: %ld (%d vars, %d arrays, %d others)\n", mut_list_size * sizeof(W_), mutlist_MUTVARS, mutlist_MUTARRS, mutlist_OTHERS)); } for (s = 0; s < generations[g].n_steps; s++) { |