From b44172dab9e15ff5d5653e9dbe729a473ed0d0f9 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Tue, 6 Sep 2011 18:04:32 +0000 Subject: [PATCH] Fix "braces recommended" warning in audio_conference_mixer. Review URL: http://webrtc-codereview.appspot.com/131014 git-svn-id: http://webrtc.googlecode.com/svn/trunk@539 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../source/audio_conference_mixer_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/audio_conference_mixer/source/audio_conference_mixer_impl.cc b/src/modules/audio_conference_mixer/source/audio_conference_mixer_impl.cc index 04766568ac..8be8af5c36 100644 --- a/src/modules/audio_conference_mixer/source/audio_conference_mixer_impl.cc +++ b/src/modules/audio_conference_mixer/source/audio_conference_mixer_impl.cc @@ -260,7 +260,7 @@ WebRtc_Word32 AudioConferenceMixerImpl::Process() // Clear mixedParticipantsMap to avoid memory leak warning. // Please note that the mixedParticipantsMap doesn't own any dynamically // allocated memory. - while(mixedParticipantsMap.Erase(mixedParticipantsMap.First()) == 0); + while(mixedParticipantsMap.Erase(mixedParticipantsMap.First()) == 0) {} // Get an AudioFrame for mixing from the memory pool. AudioFrame* mixedAudio = NULL;