Fix building error on windows

TBR=mflodman
Review URL: https://webrtc-codereview.appspot.com/427006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1838 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
leozwang@webrtc.org 2012-03-05 18:05:08 +00:00
parent c7ae13da42
commit 8ea37f4f26

View File

@ -282,7 +282,7 @@ bool ViEChannelManager::SetRembStatus(int channel_id, bool sender,
CriticalSectionScoped cs(*channel_id_critsect_);
ChannelGroup* group = FindGroup(channel_id);
if (!group) {
return -1;
return false;
}
ViEChannel* channel = ViEChannelPtr(channel_id);
assert(channel);