Fix "braces recommended" warning in video_engine.

Review URL: http://webrtc-codereview.appspot.com/137019

git-svn-id: http://webrtc.googlecode.com/svn/trunk@529 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2011-09-06 02:30:54 +00:00
parent b875349537
commit b01a62385f

View File

@ -312,8 +312,8 @@ int ViEFilePlayer::StopPlayAudio()
StopPlayAudioLocally(_localAudioChannel);
}
_localAudioChannel = -1;
while (_audioChannelBuffers.PopFront() != -1);
while (_audioChannelsSending.Erase(_audioChannelsSending.First()) != -1);
while (_audioChannelBuffers.PopFront() != -1) {}
while (_audioChannelsSending.Erase(_audioChannelsSending.First()) != -1) {}
_audioClients = 0;
return 0;
}