mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-19 08:51:59 +00:00
fix some uninitialized warnings my gcc missed, but misty's got
This commit is contained in:
parent
f30ac76477
commit
f392c395df
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue