From 8641df62aae03e02792a4dfefa91f92a19710707 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 15 Sep 2004 03:08:02 +0000 Subject: [PATCH] Clarified the braces, at GCC's prompting. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@220 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/savegame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/savegame.c b/engine/server/savegame.c index 0dc0a4720..5d4c02d75 100644 --- a/engine/server/savegame.c +++ b/engine/server/savegame.c @@ -700,7 +700,7 @@ void SV_SaveLevelCache(qboolean dontharmgame) fprintf (f, "%s\n", comment); for (cl = svs.clients, clnum=0; clnum < MAX_CLIENTS; cl++,clnum++)//fake dropping { - if (cl->state < cs_spawned && !cl->istobeloaded || dontharmgame) //don't drop if they are still connecting + if ((cl->state < cs_spawned && !cl->istobeloaded) || dontharmgame) //don't drop if they are still connecting { continue; }