summaryrefslogtreecommitdiff
path: root/ghc/hschooks.c
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-12-08 15:55:15 -0500
committerBen Gamari <ben@smart-cactus.org>2016-12-08 18:44:55 -0500
commit58c290a6523c68a42460964325a0fcd277d2a673 (patch)
treead0e44429afb585ea4140e1b3164b63520da647e /ghc/hschooks.c
parent617d57d1166d67148f28401fabaf88295f1d3f06 (diff)
downloadhaskell-58c290a6523c68a42460964325a0fcd277d2a673.tar.gz
hschooks.c: Fix long line
Diffstat (limited to 'ghc/hschooks.c')
-rw-r--r--ghc/hschooks.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ghc/hschooks.c b/ghc/hschooks.c
index c74830dec3..ace28be64c 100644
--- a/ghc/hschooks.c
+++ b/ghc/hschooks.c
@@ -54,7 +54,10 @@ defaultsHook (void)
void
StackOverflowHook (StgWord stack_size) /* in bytes */
{
- fprintf(stderr, "GHC stack-space overflow: current limit is %zu bytes.\nUse the `-K<size>' option to increase it.\n", (size_t)stack_size);
+ fprintf(stderr,
+ "GHC stack-space overflow: current limit is %zu bytes.\n"
+ "Use the `-K<size>' option to increase it.\n",
+ (size_t) stack_size);
}
int main (int argc, char *argv[])