Fix -Wformat error in Win-Clang build (take 2)
I managed to cast the wrong parameter in #10982 :-( BUG=82385 Review URL: https://codereview.webrtc.org/1520493003 Cr-Commit-Position: refs/heads/master@{#10983}
This commit is contained in:
parent
013e83b31c
commit
55bcf0f087
@ -121,7 +121,7 @@ class EventLogger final {
|
||||
", \"pid\": %d"
|
||||
", \"tid\": %d}\n",
|
||||
has_logged_event ? "," : " ", e.name, e.category_enabled,
|
||||
e.phase, e.timestamp, static_cast<int>(e.pid), e.tid);
|
||||
e.phase, e.timestamp, e.pid, static_cast<int>(e.tid));
|
||||
has_logged_event = true;
|
||||
}
|
||||
if (shutting_down)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user