mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 01:01:43 +00:00
Fix differing signedness compare
This commit is contained in:
parent
fc8ebe83fc
commit
103e67bbaa
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ static INT32 AddToMasterServer(boolean firstadd)
|
|||
UINT32 signature, tmp;
|
||||
const char *insname;
|
||||
|
||||
if (socket_fd == ERRSOCKET)/* Woah, our socket was closed! */
|
||||
if (socket_fd == (SOCKET_TYPE)ERRSOCKET)/* Woah, our socket was closed! */
|
||||
{
|
||||
if (MS_Connect(GetMasterServerIP(), GetMasterServerPort(), 0))
|
||||
return ConnectionFailedwerrno(errno);
|
||||
|
|
Loading…
Reference in a new issue