Index: webrtc/voice_engine/utility.cc |
diff --git a/webrtc/voice_engine/utility.cc b/webrtc/voice_engine/utility.cc |
index 37e12cea4f6aff97c8b426b9d0f2e2d7979fb839..88c60fdc8d8906cb6cf9c5146237d52de206623f 100644 |
--- a/webrtc/voice_engine/utility.cc |
+++ b/webrtc/voice_engine/utility.cc |
@@ -82,10 +82,10 @@ void MixWithSat(int16_t target[], |
const int16_t source[], |
size_t source_channel, |
size_t source_len) { |
- RTC_DCHECK_GE(target_channel, 1u); |
- RTC_DCHECK_LE(target_channel, 2u); |
- RTC_DCHECK_GE(source_channel, 1u); |
- RTC_DCHECK_LE(source_channel, 2u); |
+ RTC_DCHECK_GE(target_channel, 1); |
+ RTC_DCHECK_LE(target_channel, 2); |
+ RTC_DCHECK_GE(source_channel, 1); |
+ RTC_DCHECK_LE(source_channel, 2); |
if (target_channel == 2 && source_channel == 1) { |
// Convert source from mono to stereo. |