fix a gcc warning. I hope this is what the original coder intended (looks like

it).
This commit is contained in:
Bill Currie 2000-06-12 02:50:59 +00:00
parent c5c51a2839
commit 0ebebb9bdb
1 changed files with 1 additions and 1 deletions

View File

@ -874,7 +874,7 @@ skipwhite:
data++;
buf[i++] = c;
buf[i] = 0;
if (var = Cvar_FindVar(buf))
if ((var = Cvar_FindVar(buf)))
bestvar = var;
}