From e2602bc9d52b5649c6f5d4e2453710815bcc4acd Mon Sep 17 00:00:00 2001
From: Bill Currie <bill@taniwha.org>
Date: Tue, 10 Feb 2004 23:49:45 +0000
Subject: [PATCH] fix misparse of void () foo;

---
 tools/qfcc/source/qc-parse.y | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y
index 90c55de18..a6f8c82b9 100644
--- a/tools/qfcc/source/qc-parse.y
+++ b/tools/qfcc/source/qc-parse.y
@@ -416,7 +416,7 @@ def_item
 
 func_defs
 	: func_def_list ',' fdef_name func_term
-	| func_term {}
+	| def_name func_term {}
 	;
 
 func_term