Skip to content

Commit

Permalink
Fixed a clang-reported warning (to trigger rebuilding)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethouris committed May 28, 2024
1 parent 1a0eca4 commit 9643702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/srt-test-live.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ extern "C" int SrtCheckGroupHook(void* , SRTSOCKET acpsock, int , const sockaddr
size = sizeof gt;
if (-1 != srt_getsockflag(acpsock, SRTO_GROUPTYPE, &gt, &size))
{
if (gt < Size(gtypes))
if (size_t(gt) < Size(gtypes))
Verb() << " type=" << gtypes[gt] << VerbNoEOL;
else
Verb() << " type=" << int(gt) << VerbNoEOL;
Expand Down

0 comments on commit 9643702

Please sign in to comment.