summaryrefslogtreecommitdiff
path: root/rts/Stats.c
diff options
context:
space:
mode:
authorTamar Christina <tamar@zhox.com>2016-12-13 14:54:09 -0500
committerBen Gamari <ben@smart-cactus.org>2016-12-13 15:38:33 -0500
commit9cb4a130a5ed16ed95b8cab90cefe23dbae9a337 (patch)
treed1bc3145602e04bd963b0a2c60f70a489545130b /rts/Stats.c
parentcb582b6476f64c1c86d89dce4d78462581fd2a6f (diff)
downloadhaskell-9cb4a130a5ed16ed95b8cab90cefe23dbae9a337.tar.gz
Fix Win32 x86 build validation after D2756
Test Plan: ./validate Reviewers: austin, bgamari, erikd, simonmar Reviewed By: simonmar Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2825
Diffstat (limited to 'rts/Stats.c')
-rw-r--r--rts/Stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Stats.c b/rts/Stats.c
index 767a36fd96..217bacea4f 100644
--- a/rts/Stats.c
+++ b/rts/Stats.c
@@ -398,7 +398,7 @@ stat_endGC (Capability *cap, gc_thread *gct,
if (RtsFlags.GcFlags.giveStats == VERBOSE_GC_STATS) {
W_ faults = getPageFaults();
- statsPrintf("%9" FMT_Word " %9" FMT_Word " %9" FMT_Word,
+ statsPrintf("%9" FMT_Word64 " %9" FMT_Word64 " %9" FMT_Word64,
stats.gc.allocated_bytes, stats.gc.copied_bytes,
stats.gc.live_bytes);