[commit: ghc] master: hschooks.c: Fix long line (58c290a)
git at git.haskell.org
git at git.haskell.org
Thu Dec 8 23:45:10 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/58c290a6523c68a42460964325a0fcd277d2a673/ghc
>---------------------------------------------------------------
commit 58c290a6523c68a42460964325a0fcd277d2a673
Author: Ben Gamari <ben at smart-cactus.org>
Date: Thu Dec 8 15:55:15 2016 -0500
hschooks.c: Fix long line
>---------------------------------------------------------------
58c290a6523c68a42460964325a0fcd277d2a673
ghc/hschooks.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ghc/hschooks.c b/ghc/hschooks.c
index c74830d..ace28be 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[])
More information about the ghc-commits
mailing list