Index: webrtc/base/logging.cc |
diff --git a/webrtc/base/logging.cc b/webrtc/base/logging.cc |
index e28b2e104748526a22d7caff314893f4d26b9fad..e2ee1150638f1afa6c18ded8d8dfc6050de666a8 100644 |
--- a/webrtc/base/logging.cc |
+++ b/webrtc/base/logging.cc |
@@ -195,7 +195,8 @@ |
} |
uint32 delay = TimeSince(before); |
if (delay >= warn_slow_logs_delay_) { |
- rtc::LogMessage slow_log_warning(__FILE__, __LINE__, LS_WARNING); |
+ LogMessage slow_log_warning = |
+ rtc::LogMessage(__FILE__, __LINE__, LS_WARNING); |
// If our warning is slow, we don't want to warn about it, because |
// that would lead to inifinite recursion. So, give a really big |
// number for the delay threshold. |