fix some uninitialized warnings my gcc missed, but misty's got

This commit is contained in:
Bill Currie 2001-12-13 16:40:46 +00:00
parent f30ac76477
commit f392c395df

View file

@ -1636,9 +1636,9 @@ address_expr (expr_t *e1, expr_t *e2, type_t *t)
}
break;
}
return error (e, "invalid type for unary &");
return error (e1, "invalid type for unary &");
default:
return error (e, "invalid type for unary &");
return error (e1, "invalid type for unary &");
}
if (e2) {
if (e->type == ex_pointer && e2->type == ex_short) {