Skip to content

Commit

Permalink
rtp: fix signed/unsigned warning on WIN32
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored and sreimers committed Mar 22, 2022
1 parent 67c62c6 commit c7599c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtp/fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ int rtcp_rtpfb_twcc_decode(struct mbuf *mb, struct twcc *msg, int n)
}
else {
/* run length chunk */
for (j = 0; j < i && j < (chunk & 0x1fff); j++)
for (j = 0; j < i && j < (chunk & 0x1fffu); j++)
sz += (chunk >> 13) & 0x03;
}
i -= j;
Expand Down

0 comments on commit c7599c1

Please sign in to comment.