mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
net_udp.c: Fixed FIONREAD ioctl to take an int* argument instead of
an unsigned long*. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@502 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
25dd6c60ff
commit
1c872edebd
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