fix some warnings

This commit is contained in:
Bill Currie 2004-01-31 08:24:03 +00:00
parent bd4b8f5647
commit 14bd241c8e
5 changed files with 5 additions and 5 deletions

View file

@ -344,7 +344,7 @@ tripping the runaway loop counter
direct_route = FALSE;
}
}
if (waypoint_thinker.@this = [waypoint_queue removeItemAtHead]) {
if ((waypoint_thinker.@this = [waypoint_queue removeItemAtHead])) {
local id obj = waypoint_thinker.@this;
local IMP imp = [obj methodForSelector: @selector (waypointThink)];
waypoint_thinker.think = (void ()) imp;

View file

@ -9,7 +9,7 @@ CPP=cpp
CPPFLAGS=-I. -Iweapons -Imdl -Iact -Imapents
QFCC=qfcc
QFCCFLAGS=-q --warn all --code v6only $(CPPFLAGS)
QFCCFLAGS=-q --warn all,error --code v6only $(CPPFLAGS)
###############################################

View file

@ -59,7 +59,7 @@ void() util_map_entity_cull = {
oldself = self;
self = world;
while (self = find(self, targetname, self.target)) {
while ((self = find(self, targetname, self.target))) {
if (self == oldself)
continue;

View file

@ -76,7 +76,7 @@ void() SZ_init = {
sv_signon_buf_remaining = SV_SIGNON_BUFFERS;
sv_signon_remaining = SV_MAX_DATAGRAM;
while (self = nextent(self))
while ((self = nextent(self)))
SZ_GetSpace_signon(SIZEOF_BASELINE);
self = world;
};

View file

@ -39,7 +39,7 @@ void() main = {
/* Must be first. */
max_clients = 0;
walk = world;
while (walk = nextent(walk)) max_clients++;
while ((walk = nextent(walk))) max_clients++;
sv_spawning = SV_FRAMES_BEFORE_SPAWN;