diff options
Diffstat (limited to 'rts/ProfHeap.c')
-rw-r--r-- | rts/ProfHeap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ProfHeap.c b/rts/ProfHeap.c index bd2f140e24..c7048a5cf6 100644 --- a/rts/ProfHeap.c +++ b/rts/ProfHeap.c @@ -821,7 +821,7 @@ dumpCensus( Census *census ) } #endif - fprintf(hp_file, "\t%lu\n", (unsigned long)count * sizeof(W_)); + fprintf(hp_file, "\t%" FMT_SizeT "\n", (lnat)count * sizeof(W_)); } printSample(rtsFalse, census->time); |