mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-16 21:12:27 +00:00
Fix differing signedness compare
This commit is contained in:
parent
9f0887fafc
commit
70566c8088
1 changed files with 1 additions and 1 deletions
|
|
@ -693,7 +693,7 @@ static INT32 AddToMasterServer(boolean firstadd)
|
||||||
UINT32 signature, tmp;
|
UINT32 signature, tmp;
|
||||||
const char *insname;
|
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))
|
if (MS_Connect(GetMasterServerIP(), GetMasterServerPort(), 0))
|
||||||
return ConnectionFailedwerrno(errno);
|
return ConnectionFailedwerrno(errno);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue