From: divverent Date: Fri, 28 Dec 2007 16:22:03 +0000 (+0000) Subject: oops, missed a "const" X-Git-Tag: xonotic-v0.1.0preview~2619 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=56598acc94728f712285bfa8fba33c51593b0146;p=xonotic%2Fdarkplaces.git oops, missed a "const" git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7875 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index d9942831..abb7f048 100644 --- a/host.c +++ b/host.c @@ -223,7 +223,7 @@ Writes key bindings and archived cvars to config.cfg void Host_SaveConfig_f(void) { qfile_t *f; - char *file = "config.cfg"; + const char *file = "config.cfg"; if(Cmd_Argc() >= 2) { file = Cmd_Argv(1);