Fix implicit int->bool conversion in VideoSendStream::DeliverRtcp.

BUG=
R=stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1963004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4484 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-08-05 13:25:51 +00:00
parent 4052370e89
commit ccdcbae177

View File

@ -213,7 +213,7 @@ int VideoSendStream::SendRTCPPacket(int /*channel*/,
bool VideoSendStream::DeliverRtcp(const uint8_t* packet, size_t length) {
return network_->ReceivedRTCPPacket(
channel_, packet, static_cast<int>(length));
channel_, packet, static_cast<int>(length)) == 0;
}
} // namespace internal