Skip to content
Snippets Groups Projects
Commit 60a71dfd authored by Ben Gamari's avatar Ben Gamari
Browse files

rts/ProfilerReportJson: Fix format string

This was warning on i386.

(cherry picked from commit 7ff127f9)
parent 897b3dc8
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment