Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
d12cd2f2
Commit
d12cd2f2
authored
Dec 14, 2006
by
Simon Marlow
Browse files
fix wibble in memory leak error dump
parent
7eb8be6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/sm/Storage.c
View file @
d12cd2f2
...
...
@@ -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
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment