diff options
Diffstat (limited to 'rts/RetainerProfile.c')
-rw-r--r-- | rts/RetainerProfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RetainerProfile.c b/rts/RetainerProfile.c index dc21149d98..8cf88487f2 100644 --- a/rts/RetainerProfile.c +++ b/rts/RetainerProfile.c @@ -1789,7 +1789,7 @@ computeRetainerSet( void ) // because we can find MUT_VAR objects which have not been // visited during retainer profiling. for (n = 0; n < n_capabilities; n++) { - for (bd = capabilities[n].mut_lists[g]; bd != NULL; bd = bd->link) { + for (bd = capabilities[n]->mut_lists[g]; bd != NULL; bd = bd->link) { for (ml = bd->start; ml < bd->free; ml++) { maybeInitRetainerSet((StgClosure *)*ml); |