| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc
|
| index cdb45b0d5f59bb39ce14fa065fcbed097c9f5345..494c8708f1179824eb7bcf547f9aa92fb5273ae0 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc
|
| @@ -101,7 +101,7 @@ bool Bye::Create(uint8_t* packet,
|
| *index += reason_length;
|
| // Add padding bytes if needed.
|
| size_t bytes_to_pad = index_end - *index;
|
| - RTC_DCHECK_LE(bytes_to_pad, 3u);
|
| + RTC_DCHECK_LE(bytes_to_pad, 3);
|
| if (bytes_to_pad > 0) {
|
| memset(&packet[*index], 0, bytes_to_pad);
|
| *index += bytes_to_pad;
|
|
|