From 3274be68e3e07140c619472834e298a79369cc81 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sun, 29 Aug 2010 17:50:20 +0000 Subject: [PATCH] pr_edict.c (PR_LoadProgs): silenced a minor compiler warning after the const changes. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@310 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/pr_edict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/pr_edict.c b/Quake/pr_edict.c index 8051cdb4..085ab615 100644 --- a/Quake/pr_edict.c +++ b/Quake/pr_edict.c @@ -1051,7 +1051,7 @@ void PR_LoadProgs (void) pr_maxknownstrings = 0; pr_stringssize = progs->numstrings; if (pr_knownstrings) - Z_Free (pr_knownstrings); + Z_Free ((void *)pr_knownstrings); pr_knownstrings = NULL; PR_SetEngineString(""); // initialize the strings pr_globaldefs = (ddef_t *)((byte *)progs + progs->ofs_globaldefs);