mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 10:21:21 +00:00
[qfcc] Return properly from copying a block expression
This came up when investigating an internal error from the line above. It turned out the error was correct (problem with converting scalars to vectors), but the break was not.
This commit is contained in:
parent
8021848b5b
commit
709a0a338d
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ copy_expr (expr_t *e)
|
|||
}
|
||||
if (e->e.block.result && !n->e.block.result)
|
||||
internal_error (e, "bogus block result?");
|
||||
break;
|
||||
return n;
|
||||
case ex_expr:
|
||||
n = new_expr ();
|
||||
*n = *e;
|
||||
|
|
Loading…
Reference in a new issue