mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
SOCK_Send: Consistently unsigned types in iteration
Both mysocketses and broadcastaddresses are unsigned, but i and j were ptrdiff_t..? These *also* just started erroring for me
This commit is contained in:
parent
6a8c1e250d
commit
fc80ee6679
1 changed files with 1 additions and 1 deletions
|
|
@ -557,7 +557,7 @@ static inline ptrdiff_t SOCK_SendToAddr(SOCKET_TYPE socket, mysockaddr_t* sockad
|
|||
static void SOCK_Send(void)
|
||||
{
|
||||
ptrdiff_t c = ERRSOCKET;
|
||||
ptrdiff_t i, j;
|
||||
size_t i, j;
|
||||
|
||||
if (!nodeconnected[doomcom->remotenode])
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue