mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-17 16:32:37 +00:00
net_udp.c: Fixed FIONREAD ioctl to take an int* argument instead of
an unsigned long*. git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@502 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
c03dead0ea
commit
a0c0c4ad36
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ int UDP_Connect (sys_socket_t socketid, struct qsockaddr *addr)
|
|||
|
||||
sys_socket_t UDP_CheckNewConnections (void)
|
||||
{
|
||||
unsigned long available;
|
||||
int available;
|
||||
struct sockaddr_in from;
|
||||
socklen_t fromlen;
|
||||
char buff[1];
|
||||
|
|
Loading…
Reference in a new issue