]> git.rm.cloudns.org Git - xonotic/gmqcc.git/commitdiff
convert to lisp divVerent/fix-translatable-strings
authorRudolf Polzer <divverent@xonotic.org>
Fri, 19 Jul 2013 12:09:47 +0000 (14:09 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Fri, 19 Jul 2013 12:09:47 +0000 (14:09 +0200)
parser.c

index 514a82fcd499f3be152df94a5f71e73ba6b19347..661e40a19537b3e41e3e66ba4c73e081b67c97fb 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -262,7 +262,7 @@ static char *parser_strdup(const char *str)
 static ast_value* parser_const_string(parser_t *parser, const char *str, bool dotranslate)
 {
     ht ht_string =
-        dotranslate ? parser->ht_imm_string_dotranslate : parser->ht_imm_string;
+        (dotranslate) ? parser->ht_imm_string_dotranslate : parser->ht_imm_string;
     size_t hash = util_hthash(ht_string, str);
     ast_value *out;