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:
parent
4052370e89
commit
ccdcbae177
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user