From b1eee04d53a59b8cb834b56b58c8830a5b298db4 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 26 Apr 2012 20:24:06 +0100 Subject: Build fixes --- ghc/hschooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ghc') 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' option to increase it.\n", stack_size); + fprintf(stderr, "GHC stack-space overflow: current limit is %zu bytes.\nUse the `-K' option to increase it.\n", stack_size); } -- cgit v1.2.1