From: Wolfgang Bumiller Date: Tue, 7 Jan 2014 14:04:29 +0000 (+0100) Subject: sometimes I hate travis X-Git-Tag: xonotic-v0.8.0~17 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0f506e768b45f04dc86c43f76fc67f32acce69a1;p=xonotic%2Fgmqcc.git sometimes I hate travis --- diff --git a/parser.c b/parser.c index 5a82234..eaa1490 100644 --- a/parser.c +++ b/parser.c @@ -6246,6 +6246,7 @@ void parser_cleanup(parser_t *parser) } static bool parser_set_coverage_func(parser_t *parser, ir_builder *ir) { + size_t i; ast_expression *expr; ast_value *cov; ast_function *func; @@ -6254,7 +6255,7 @@ static bool parser_set_coverage_func(parser_t *parser, ir_builder *ir) { return true; func = NULL; - for (size_t i = 0; i != vec_size(parser->functions); ++i) { + for (i = 0; i != vec_size(parser->functions); ++i) { if (!strcmp(parser->functions[i]->name, "coverage")) { func = parser->functions[i]; break;