diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2019-06-10 11:36:49 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-06-11 18:43:43 -0400 |
commit | 1389b2ccdecb0ea7a8982884512dbf7175a52042 (patch) | |
tree | 5e37a99f6c6005a3e6b8120805cfffa81c5da791 /rts | |
parent | 0b7f81f560c602f32cfc90fd3fb5f1c52f06ad49 (diff) | |
download | haskell-1389b2ccdecb0ea7a8982884512dbf7175a52042.tar.gz |
Fix an error message in CheckUnload.c:searchHeapBlocks
Diffstat (limited to 'rts')
-rw-r--r-- | rts/CheckUnload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/CheckUnload.c b/rts/CheckUnload.c index 473e510f5e..0af9f464a1 100644 --- a/rts/CheckUnload.c +++ b/rts/CheckUnload.c @@ -335,7 +335,7 @@ static void searchHeapBlocks (HashTable *addrs, bdescr *bd, break; default: - barf("heapCensus, unknown object: %d", info->type); + barf("searchHeapBlocks, unknown object: %d", info->type); } if (!prim) { |