aboutsummaryrefslogtreecommitdiffstats
path: root/code/unix/unix_net.c
diff options
context:
space:
mode:
authorzakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-31 18:00:00 +0000
committerzakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-31 18:00:00 +0000
commit227d86d227c6951ee2bd98388e7960c479c2b2e6 (patch)
tree9a52b67cedd0be176d2b8a8be505a5b178f356b9 /code/unix/unix_net.c
parent389b14cfcd3855222e0fafbbc40cbb71df595fef (diff)
downloadioquake3-aero-227d86d227c6951ee2bd98388e7960c479c2b2e6.tar.gz
ioquake3-aero-227d86d227c6951ee2bd98388e7960c479c2b2e6.zip
First diff from Andreas Schneider:
here are gcc4 signedness fixes for latest svn :) git-svn-id: svn://svn.icculus.org/quake3/trunk@50 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/unix_net.c')
-rw-r--r--code/unix/unix_net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/unix_net.c b/code/unix/unix_net.c
index cfb984a..7eda309 100644
--- a/code/unix/unix_net.c
+++ b/code/unix/unix_net.c
@@ -159,7 +159,7 @@ qboolean Sys_GetPacket (netadr_t *net_from, msg_t *net_message)
{
int ret;
struct sockaddr_in from;
- int fromlen;
+ socklen_t fromlen;
int net_socket;
int protocol;
int err;