Fix Clang warnings

This commit is contained in:
Cameron Gutman
2020-12-05 23:20:02 -06:00
parent ac6630ef59
commit 3fddfc5557
6 changed files with 11 additions and 13 deletions

View File

@@ -169,7 +169,7 @@ static void ReceiveThreadProc(void* context) {
continue;
}
if (packet->size < sizeof(RTP_PACKET)) {
if (packet->size < (int)sizeof(RTP_PACKET)) {
// Runt packet
continue;
}