Fix a few warnings from recent changes

This commit is contained in:
Tim Wojtulewicz 2023-04-27 14:53:24 -07:00
parent f3f139deab
commit eb9d851a07
3 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@ void ScriptProfile::Report(FILE* f, bool with_traces) const
calls += util::fmt("%s|", s.c_str());
counts += util::fmt("%d|", stats.call_count);
cpu += util::fmt("%f|", stats.cpu_time);
memory += util::fmt("%llu|", stats.memory);
memory += util::fmt("%" PRIu64 "|", stats.memory);
}
calls.pop_back();