diff --git a/tools/qfcc/source/expr.c b/tools/qfcc/source/expr.c index b27a72a04..3881c2c2a 100644 --- a/tools/qfcc/source/expr.c +++ b/tools/qfcc/source/expr.c @@ -1887,8 +1887,8 @@ function_expr (expr_t *e1, expr_t *e2) e->type = expr_types[t->type]; } if (!type_assignable (ftype->parm_types[i], t)) { - print_type (ftype->parm_types[i]); puts (""); - print_type (t); puts (""); + //print_type (ftype->parm_types[i]); puts (""); + //print_type (t); puts (""); err = error (e, "type mismatch for parameter %d of %s", i + 1, e1->e.def->name); }