| Index: webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc
|
| diff --git a/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc b/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc
|
| index 7e9677446626a1c76160760c2f875cb35b7479c3..e1e6a310a57e532c2e43542c35e0e5bbb04f5982 100644
|
| --- a/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc
|
| +++ b/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc
|
| @@ -477,7 +477,7 @@ void PopulateAudioFrame(AudioFrame* frame,
|
| RandomGenerator* rand_gen) {
|
| ASSERT_GT(amplitude, 0);
|
| ASSERT_LE(amplitude, 32767);
|
| - for (int ch = 0; ch < frame->num_channels_; ch++) {
|
| + for (size_t ch = 0; ch < frame->num_channels_; ch++) {
|
| for (size_t k = 0; k < frame->samples_per_channel_; k++) {
|
| // Store random 16 bit number between -(amplitude+1) and
|
| // amplitude.
|
|
|