From: Rudolf Polzer Date: Fri, 19 Jul 2013 12:09:47 +0000 (+0200) Subject: convert to lisp X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=refs%2Fheads%2FdivVerent%2Ffix-translatable-strings;p=xonotic%2Fgmqcc.git convert to lisp --- diff --git a/parser.c b/parser.c index 514a82f..661e40a 100644 --- 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;