From f5ce9e2004a1dee43ea631bca17d990b6410afa1 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 20 Mar 2011 19:04:18 +0900 Subject: [PATCH] Fix a merge induced error in overloaded functions. --- tools/qfcc/source/function.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/qfcc/source/function.c b/tools/qfcc/source/function.c index c83f85170..d1b6ac6ef 100644 --- a/tools/qfcc/source/function.c +++ b/tools/qfcc/source/function.c @@ -322,7 +322,6 @@ find_function (expr_t *fexpr, expr_t *params) memset (&type, 0, sizeof (type)); - type.type = ev_func; for (e = params; e; e = e->next) { if (e->type == ex_error) return e;