mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Add a missing break.
"return" falling through to "goto" was bad news :)
This commit is contained in:
parent
d5f669af7a
commit
55d3d17807
1 changed files with 1 additions and 0 deletions
|
@ -707,6 +707,7 @@ statement_uexpr (sblock_t *sblock, expr_t *e)
|
|||
sblock_add_statement (sblock, s);
|
||||
sblock->next = new_sblock ();
|
||||
sblock = sblock->next;
|
||||
break;
|
||||
case 'g':
|
||||
sblock = statement_branch (sblock, e);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue