summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-04-01 13:06:37 -0400
committerBen Gamari <ben@smart-cactus.org>2022-04-07 09:42:42 -0400
commit9eeaeca4e95d58f362737bceead0ae2e16bcbbbb (patch)
tree399b5b28632c5339e6bf5224e74a4512129de7c2
parent50739d2b19cc6bb3bc9b2749ba1e1e164574f957 (diff)
downloadhaskell-9eeaeca4e95d58f362737bceead0ae2e16bcbbbb.tar.gz
rts: Add missing newline in error message
-rw-r--r--rts/linker/PEi386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/linker/PEi386.c b/rts/linker/PEi386.c
index cbe99f27a9..86c0768390 100644
--- a/rts/linker/PEi386.c
+++ b/rts/linker/PEi386.c
@@ -434,7 +434,7 @@ void freePreloadObjectFile_PEi386(ObjectCode *oc)
See Note [Exception Unwinding]. */
if (oc->info->xdata) {
if (!RtlDeleteFunctionTable (oc->info->xdata->start))
- debugBelch ("Unable to remove Exception handlers for %" PATH_FMT,
+ debugBelch ("Unable to remove Exception handlers for %" PATH_FMT "\n",
oc->fileName);
oc->info->xdata = NULL;
oc->info->pdata = NULL;