From: Wolfgang (Blub) Bumiller Date: Thu, 22 Nov 2012 20:42:14 +0000 (+0100) Subject: unsed params in ftepp.c X-Git-Tag: 0.1.9~337 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=facd89b188fd9120b8d5405b4d0a05d7d1557b07;p=xonotic%2Fgmqcc.git unsed params in ftepp.c --- diff --git a/ftepp.c b/ftepp.c index e677e74..34ca698 100644 --- a/ftepp.c +++ b/ftepp.c @@ -134,6 +134,7 @@ static void pptoken_delete(pptoken *self) static ppmacro *ppmacro_new(lex_ctx ctx, const char *name) { + (void)ctx; ppmacro *macro = (ppmacro*)mem_a(sizeof(ppmacro)); memset(macro, 0, sizeof(*macro)); macro->name = util_strdup(name);