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:
toaster 2025-09-18 19:34:28 +01:00
parent 6a8c1e250d
commit fc80ee6679

View file

@ -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;