summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-09-14 11:43:12 +0100
committerIan Lynagh <igloo@earth.li>2012-09-14 11:43:12 +0100
commitf4d0e6282da7b37fe019aaf91a32d3f958ceec64 (patch)
tree77feb361dd04de99a23336b2e3b49de3da7ba386 /includes
parent3f39164534af07ddd49d7bd2a1c0e1b171903ce3 (diff)
downloadhaskell-f4d0e6282da7b37fe019aaf91a32d3f958ceec64.tar.gz
Fix build on OS X
Diffstat (limited to 'includes')
-rw-r--r--includes/mkDerivedConstants.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mkDerivedConstants.c b/includes/mkDerivedConstants.c
index e014d15194..69c87f0832 100644
--- a/includes/mkDerivedConstants.c
+++ b/includes/mkDerivedConstants.c
@@ -346,7 +346,7 @@ main(int argc, char *argv[])
printf("#define BLOCK_SIZE %u\n", BLOCK_SIZE);
printf("#define MBLOCK_SIZE %u\n", MBLOCK_SIZE);
- printf("#define BLOCKS_PER_MBLOCK %" FMT_SizeT "\n", (W_)BLOCKS_PER_MBLOCK);
+ printf("#define BLOCKS_PER_MBLOCK %" FMT_Word "\n", (W_)BLOCKS_PER_MBLOCK);
// could be derived, but better to save doing the calculation twice
printf("\n\n");