From 0c9522b1ca8b7f53caa9a99ac7d0c793f19d9d3d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 13 Jan 2011 16:21:31 +0900 Subject: [PATCH] Fix overloaded functions. --- tools/qfcc/source/function.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/function.c b/tools/qfcc/source/function.c index 9a73a40c5..939d1551f 100644 --- a/tools/qfcc/source/function.c +++ b/tools/qfcc/source/function.c @@ -262,6 +262,7 @@ 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;