From fcb34f7bb31145fb2639b4410415d796ca43114b Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 25 Jul 2005 14:01:42 +0000 Subject: [PATCH] [project @ 2005-07-25 14:01:42 by simonmar] catching up with GC tweaks. --- ghc/rts/ProfHeap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/ProfHeap.c b/ghc/rts/ProfHeap.c index f30ef5d..2593d1e 100644 --- a/ghc/rts/ProfHeap.c +++ b/ghc/rts/ProfHeap.c @@ -1063,7 +1063,7 @@ heapCensus( void ) // Now traverse the heap in each generation/step. if (RtsFlags.GcFlags.generations == 1) { - heapCensusChain( census, g0s0->to_blocks ); + heapCensusChain( census, g0s0->blocks ); } else { for (g = 0; g < RtsFlags.GcFlags.generations; g++) { for (s = 0; s < generations[g].n_steps; s++) { -- 1.7.10.4