From 4574351ba3c210a6a36ecc472a7ecc7e159bbde0 Mon Sep 17 00:00:00 2001 From: ludwig Date: Sun, 28 Aug 2005 13:02:57 +0000 Subject: add parenthesis to avoid warning git-svn-id: svn://svn.icculus.org/quake3/trunk@19 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/unix/unix_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code') diff --git a/code/unix/unix_net.c b/code/unix/unix_net.c index a7412c0..cfb984a 100755 --- a/code/unix/unix_net.c +++ b/code/unix/unix_net.c @@ -279,7 +279,7 @@ qboolean Sys_IsLANAddress (netadr_t adr) { // 192.168.0.0 - 192.168.255.255 (192.168/16 prefix) if(adr.ip[0] == 10) return qtrue; - if(adr.ip[0] == 172 && adr.ip[1]&0xf0 == 16) + if(adr.ip[0] == 172 && (adr.ip[1]&0xf0) == 16) return qtrue; if(adr.ip[0] == 192 && adr.ip[1] == 168) return qtrue; -- cgit v1.2.3