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:
hans 2015-12-10 19:49:22 -08:00 committed by Commit bot
parent 013e83b31c
commit 55bcf0f087

View File

@ -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)