net_udp.c: Fixed FIONREAD ioctl to take an int* argument instead of

an unsigned long*.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@502 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2011-11-12 18:03:49 +00:00
parent 4ff1f1f5bb
commit 58b8e509bd

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