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:
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user