]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Another bool->int fix; now clang-compiled gmqcc actually works...
authorWolfgang Bumiller <blub@speed.at>
Thu, 27 Dec 2012 13:33:58 +0000 (14:33 +0100)
committerWolfgang Bumiller <blub@speed.at>
Thu, 27 Dec 2012 13:33:58 +0000 (14:33 +0100)
parser.c

index 422930d0d8d1ca7612caee58af4e41ac92f2665a..6a9157797c4517d12a3582dce6840f74e40bb1dc 100644 (file)
--- 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;