add parenthesis to avoid warning

This commit is contained in:
Ludwig Nussel 2005-08-28 13:02:57 +00:00
parent 4a1e2f8124
commit 07af20b73b
1 changed files with 1 additions and 1 deletions

View File

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