From ba901863d2372195be8f8287acc98ebe361869d2 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 27 Jan 2004 04:41:20 +0000 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 fce178843..8491bd4e6 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -962,6 +962,7 @@ expr fexpr : expr { $$ = fold_constants ($1); } + ; opt_arg_list : /* emtpy */ { $$ = 0; }