Index: webrtc/base/logging.cc |
diff --git a/webrtc/base/logging.cc b/webrtc/base/logging.cc |
index affbb03bd4d80dadd02da99afda95a9801a30aa2..7e308c2693185cdf8b15863ef47b5544ae3468c6 100644 |
--- a/webrtc/base/logging.cc |
+++ b/webrtc/base/logging.cc |
@@ -206,8 +206,7 @@ LogMessage::~LogMessage() { |
} |
uint32 delay = TimeSince(before); |
if (delay >= warn_slow_logs_delay_) { |
- LogMessage slow_log_warning = |
- rtc::LogMessage(__FILE__, __LINE__, LS_WARNING); |
+ rtc::LogMessage slow_log_warning(__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. |