mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
net_udp.c FIONREAD fix from Ozkan Sezer.
net_udp.c: Fixed FIONREAD ioctl to take an int* argument instead of an unsigned long*.
This commit is contained in:
parent
9e3db08fdd
commit
1c82956dd7
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ UDP_Connect (int socket, netadr_t *addr)
|
|||
int
|
||||
UDP_CheckNewConnections (void)
|
||||
{
|
||||
unsigned long available;
|
||||
int available;
|
||||
AF_address_t from;
|
||||
socklen_t fromlen = sizeof (from);
|
||||
char buff[1];
|
||||
|
|
Loading…
Reference in a new issue