From 17360efc5fcdc7941be0cb5e76297fd901b6c5e3 Mon Sep 17 00:00:00 2001 From: Peter Trommler <ptrommler@acm.org> Date: Wed, 6 Feb 2019 15:07:05 +0100 Subject: [PATCH] RTS: Fix format string in log message --- rts/ProfilerReportJson.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- GitLab