1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Fix compiler warning caused by signed/unsigned mismatch

This commit is contained in:
Kawe Mazidjatari 2023-04-10 23:45:51 +02:00
parent 350dd4fcca
commit 53e2ddb122

@ -270,7 +270,7 @@ int CSocketCreator::OnSocketAccepted(SocketHandle_t hSocket, const netadr_t& net
//-----------------------------------------------------------------------------
void CSocketCreator::CloseAcceptedSocket(int nIndex)
{
if (nIndex >= m_hAcceptedSockets.size())
if (nIndex >= int(m_hAcceptedSockets.size()))
{
return;
}