diff --git a/webrtc/system_wrappers/interface/logging.h b/webrtc/system_wrappers/interface/logging.h index ac4a11f6f5..41c436b1f3 100644 --- a/webrtc/system_wrappers/interface/logging.h +++ b/webrtc/system_wrappers/interface/logging.h @@ -110,7 +110,7 @@ class LogMessageVoidify { #if defined(WEBRTC_RESTRICT_LOGGING) // This should compile away logs matching the following condition. #define RESTRICT_LOGGING_PRECONDITION(sev) \ - sev < LS_INFO ? (void) 0 : + sev < webrtc::LS_INFO ? (void) 0 : #else #define RESTRICT_LOGGING_PRECONDITION(sev) #endif