diff options
| author | Ben Gamari <ben@smart-cactus.org> | 2019-02-04 21:42:41 -0500 |
|---|---|---|
| committer | Ben Gamari <ben@smart-cactus.org> | 2019-02-04 21:42:41 -0500 |
| commit | 37c9b806b7aa939b76617669d72e4884e1b547f9 (patch) | |
| tree | dd7a4435f35b1123678325326cd0fdc6e6ce9cd4 | |
| parent | 406e43af2f12756c80d583b86326f760f2f584cc (diff) | |
| download | haskell-wip/fix-json-profiling-report-i386.tar.gz | |
rts/ProfilerReportJson: Fix format stringwip/fix-json-profiling-report-i386
This was warning on i386.
| -rw-r--r-- | rts/ProfilerReportJson.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ProfilerReportJson.c b/rts/ProfilerReportJson.c index a7869215f7..ea7c852d21 100644 --- a/rts/ProfilerReportJson.c +++ b/rts/ProfilerReportJson.c @@ -66,7 +66,7 @@ logCostCentreStack(FILE *prof_file, CostCentreStack const *ccs) fprintf(prof_file, "{\"id\": %" FMT_Int ", " "\"entries\": %" FMT_Word64 ", " - "\"alloc\": %" FMT_Word ", " + "\"alloc\": %" FMT_Word64 ", " "\"ticks\": %" FMT_Word ", ", ccs->cc->ccID, ccs->scc_count, |
