diff options
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/hschooks.c | 5 |
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[]) |