mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
Fix a few warnings from recent changes
This commit is contained in:
parent
f3f139deab
commit
eb9d851a07
3 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue