Index: webrtc/modules/audio_processing/agc/agc.cc |
diff --git a/webrtc/modules/audio_processing/agc/agc.cc b/webrtc/modules/audio_processing/agc/agc.cc |
index a6256cbe46ab4a5c30d04c8421c66583fa07fce6..3eca1483d58f50d9575da56653c61bd6473c442a 100644 |
--- a/webrtc/modules/audio_processing/agc/agc.cc |
+++ b/webrtc/modules/audio_processing/agc/agc.cc |
@@ -39,7 +39,7 @@ Agc::Agc() |
Agc::~Agc() {} |
float Agc::AnalyzePreproc(const int16_t* audio, size_t length) { |
- RTC_DCHECK_GT(length, 0u); |
+ RTC_DCHECK_GT(length, 0); |
size_t num_clipped = 0; |
for (size_t i = 0; i < length; ++i) { |
if (audio[i] == 32767 || audio[i] == -32768) |