diff options
author | Ian Lynagh <igloo@earth.li> | 2012-04-26 20:24:06 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-04-26 20:24:06 +0100 |
commit | b1eee04d53a59b8cb834b56b58c8830a5b298db4 (patch) | |
tree | 950be826ecb127c360c2858a3463bfb25c62776b /ghc/hschooks.c | |
parent | b643fe08b3c083fd23889ed9413a01928779a9e8 (diff) | |
download | haskell-b1eee04d53a59b8cb834b56b58c8830a5b298db4.tar.gz |
Build fixes
Diffstat (limited to 'ghc/hschooks.c')
-rw-r--r-- | ghc/hschooks.c | 2 |
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); } |