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:
sezero 2011-11-12 18:03:49 +00:00
parent 25dd6c60ff
commit 1c872edebd

View file

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