diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-12-26 12:55:12 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-12-27 01:42:06 +0100 |
commit | 8bf2d8f6360a13b68a55ed29865c09c106665409 (patch) | |
tree | 30b27653e8759f8067a52dca8846efc51ee14e88 /rts | |
parent | 0fda9084e0f5dfce9d80967f0e11c852e301d335 (diff) | |
download | haskell-8bf2d8f6360a13b68a55ed29865c09c106665409.tar.gz |
Linker: Fix cut-and-paste error in debug output
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Linker.c b/rts/Linker.c index a082ba778f..9905d7d960 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -3617,7 +3617,7 @@ ocGetNames_PEi386 ( ObjectCode* oc ) sections = (Section*)stgCallocBytes( sizeof(Section), hdr->NumberOfSections + 1, /* +1 for the global BSS section see below */ - "ocGetNames_ELF(sections)"); + "ocGetNames_PEi386(sections)"); oc->sections = sections; oc->n_sections = hdr->NumberOfSections + 1; |