Warning message bugfix.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3390 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2009-10-06 00:37:47 +00:00
parent 8f11f5f73b
commit db66fa07f5
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ cvar_t *VARGS Q2Cvar_ForceSet (char *var_name, char *value)
cvar_t *var = Cvar_FindVar(var_name);
if (!var)
{
Con_Printf("Q2Cvar_Set: variable %s not found\n", var);
Con_Printf("Q2Cvar_Set: variable %s not found\n", var_name);
return NULL;
}
return Cvar_ForceSet(var, value);