mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 16:51:08 +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_add_statement (sblock, s);
|
||||||
sblock->next = new_sblock ();
|
sblock->next = new_sblock ();
|
||||||
sblock = sblock->next;
|
sblock = sblock->next;
|
||||||
|
break;
|
||||||
case 'g':
|
case 'g':
|
||||||
sblock = statement_branch (sblock, e);
|
sblock = statement_branch (sblock, e);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue