From 52d87e8b21e6df632ce56780d32011b7f9244ee4 Mon Sep 17 00:00:00 2001 From: simonpj Date: Thu, 24 Feb 2005 09:41:49 +0000 Subject: [PATCH] [project @ 2005-02-24 09:41:49 by simonpj] Add missing semicolon; merge to stable --- ghc/rts/RetainerProfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/RetainerProfile.c b/ghc/rts/RetainerProfile.c index 3388978..927a734 100644 --- a/ghc/rts/RetainerProfile.c +++ b/ghc/rts/RetainerProfile.c @@ -1770,7 +1770,7 @@ computeRetainerSet( void ) // object (computing sumOfNewCostExtra and updating costArray[] when // debugging retainer profiler). for (g = 0; g < RtsFlags.GcFlags.generations; g++) { - ASSERT(g != 0 || (generations[g].mut_list == NULL)) + ASSERT(g != 0 || (generations[g].mut_list == NULL)); // Traversing through mut_list is necessary // because we can find MUT_VAR objects which have not been -- 1.7.10.4