diff options
author | Ian Lynagh <igloo@earth.li> | 2012-09-14 11:43:12 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-09-14 11:43:12 +0100 |
commit | f4d0e6282da7b37fe019aaf91a32d3f958ceec64 (patch) | |
tree | 77feb361dd04de99a23336b2e3b49de3da7ba386 /includes | |
parent | 3f39164534af07ddd49d7bd2a1c0e1b171903ce3 (diff) | |
download | haskell-f4d0e6282da7b37fe019aaf91a32d3f958ceec64.tar.gz |
Fix build on OS X
Diffstat (limited to 'includes')
-rw-r--r-- | includes/mkDerivedConstants.c | 2 |
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"); |