]> de.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:35:25 +0000 (14:35 +0100)
parser.c

index bfa6d6a284d7e7cbcc7b713a4183637e7d54b22f..03216da1181a0b25a6e0a29777efc3a2f99426cd 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -4454,7 +4454,7 @@ skipvar:
                     ast_unref(cval);
                 }
             } else {
-                bool cvq;
+                int cvq;
                 shunt sy = { NULL, NULL };
                 cvq = var->cvq;
                 var->cvq = CV_NONE;