Fix newlines in Com_Error, patch by Zack Middleton (#5023)

This commit is contained in:
Thilo Schulz 2011-06-06 14:51:02 +00:00
parent 71b8fe477d
commit 698a9c51ec
4 changed files with 8 additions and 8 deletions

View file

@ -635,10 +635,10 @@ void Cvar_SetSafe( const char *var_name, const char *value )
{
if( value )
Com_Error( ERR_DROP, "Restricted source tried to set "
"\"%s\" to \"%s\"\n", var_name, value );
"\"%s\" to \"%s\"", var_name, value );
else
Com_Error( ERR_DROP, "Restricted source tried to "
"modify \"%s\"\n", var_name );
"modify \"%s\"", var_name );
return;
}
Cvar_Set( var_name, value );