From 834ab26be5b96bcdaa2518561bb96072f19be7ad Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 27 Oct 2003 21:48:13 +0000 Subject: [PATCH] remove some buggy debug code :P --- tools/qfcc/source/expr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/qfcc/source/expr.c b/tools/qfcc/source/expr.c index 34059ba51..5b6835b86 100644 --- a/tools/qfcc/source/expr.c +++ b/tools/qfcc/source/expr.c @@ -2235,7 +2235,6 @@ function_expr (expr_t *e1, expr_t *e2) parm_count = -ftype->num_parms - 1; } else if (ftype->num_parms >= 0) { if (arg_count > ftype->num_parms) { - printf ("%d %d %s\n", arg_count, ftype->num_parms, e1->e.def->name); return error (e1, "too many arguments"); } else if (arg_count < ftype->num_parms) { if (!options.traditional)