From d12cd2f2c930773a34781b942b8248a3818eeae8 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 14 Dec 2006 10:11:02 +0000 Subject: [PATCH] fix wibble in memory leak error dump --- rts/sm/Storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index ddae8c6..fba30bb 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -1186,7 +1186,7 @@ memInventory(void) debugBelch(" exec : %4lu\n", exec_blocks); debugBelch(" free : %4lu\n", free_blocks); debugBelch(" total : %4lu\n\n", live_blocks + free_blocks); - debugBelch(" in system : %4lu\n", mblocks_allocated + BLOCKS_PER_MBLOCK); + debugBelch(" in system : %4lu\n", mblocks_allocated * BLOCKS_PER_MBLOCK); ASSERT(0); } } -- 1.7.10.4