summaryrefslogtreecommitdiff
path: root/ghc/hschooks.c
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-04-26 20:24:06 +0100
committerIan Lynagh <igloo@earth.li>2012-04-26 20:24:06 +0100
commitb1eee04d53a59b8cb834b56b58c8830a5b298db4 (patch)
tree950be826ecb127c360c2858a3463bfb25c62776b /ghc/hschooks.c
parentb643fe08b3c083fd23889ed9413a01928779a9e8 (diff)
downloadhaskell-b1eee04d53a59b8cb834b56b58c8830a5b298db4.tar.gz
Build fixes
Diffstat (limited to 'ghc/hschooks.c')
-rw-r--r--ghc/hschooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/hschooks.c b/ghc/hschooks.c
index ab689fd8ff..2572babf41 100644
--- a/ghc/hschooks.c
+++ b/ghc/hschooks.c
@@ -34,6 +34,6 @@ defaultsHook (void)
void
StackOverflowHook (lnat stack_size) /* in bytes */
{
- fprintf(stderr, "GHC stack-space overflow: current limit is %" FMT_SizeT " bytes.\nUse the `-K<size>' option to increase it.\n", stack_size);
+ fprintf(stderr, "GHC stack-space overflow: current limit is %zu bytes.\nUse the `-K<size>' option to increase it.\n", stack_size);
}