From 5cfeb7809f5a7e02932cd7a0a945d6b4ad02d0d9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 20 Nov 2012 17:11:39 +0900 Subject: [PATCH] Fix a missing ; --- tools/qfcc/source/qc-parse.y | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 3b9e63b01..6a3cd41fe 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -1044,6 +1044,7 @@ local_def local_expr = 0; (void) ($2); } + ; statement : ';' { $$ = 0; }