mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
The & operator produces a pointer, not void.
This commit is contained in:
parent
1c3cc571f1
commit
56106892c8
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@ expr_address (sblock_t *sblock, expr_t *e, operand_t **op)
|
|||
{
|
||||
if (e->type == ex_uexpr) {
|
||||
sblock = statement_subexpr (sblock, e->e.expr.e1, op);
|
||||
(*op)->type = ev_void;
|
||||
(*op)->type = ev_pointer;
|
||||
}
|
||||
return sblock;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue