From: Wolfgang Bumiller Date: Thu, 27 Dec 2012 13:33:58 +0000 (+0100) Subject: Another bool->int fix; now clang-compiled gmqcc actually works... X-Git-Tag: before-library~473 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=517b6fed81221fd011918d9ecb383c48e6a24dca;p=xonotic%2Fgmqcc.git Another bool->int fix; now clang-compiled gmqcc actually works... --- diff --git a/parser.c b/parser.c index 422930d..6a91577 100644 --- a/parser.c +++ b/parser.c @@ -4486,7 +4486,7 @@ skipvar: ast_unref(cval); } } else { - bool cvq; + int cvq; shunt sy = { NULL, NULL }; cvq = var->cvq; var->cvq = CV_NONE;