From a8dfe933506ae8d3171b545c57583c073635e515 Mon Sep 17 00:00:00 2001 From: Spoike Date: Wed, 14 Sep 2005 04:18:05 +0000 Subject: [PATCH] Small warning fix. I should really fix all of FTE's warnings some time.. :( git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1315 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/cvar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/cvar.c b/engine/common/cvar.c index e32ebe1c2..611b2a750 100644 --- a/engine/common/cvar.c +++ b/engine/common/cvar.c @@ -362,7 +362,7 @@ void Cvar_Reset_f (void) { cvar_group_t *grp; cvar_t *cmd; - int i, listflags, exclflags; + int i, listflags=0, exclflags; char *var; char *search, *gsearch; char strtmp[512];