]> git.rm.cloudns.org Git - xonotic/gmqcc.git/commitdiff
Getting rid of some debug output
authorWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 14:12:12 +0000 (16:12 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 14:12:12 +0000 (16:12 +0200)
parser.c

index 12e7de610270872bc9999aef7d06805094e2c7da..eaa5dd19675bd9999cb4bb4882e387e3713cbd45 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1172,11 +1172,9 @@ static bool parser_parse_for(parser_t *parser, ast_block *block, ast_expression
 
     /* parse the condition */
     if (parser->tok != ';') {
-        printf("going cond!\n");
         cond = parser_expression_leave(parser);
         if (!cond)
             goto onerr;
-        printf("going cond!\n");
     }
 
     /* move on to incrementor */