mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-29 05:31:26 +00:00
[qfcc] Correct an error message
Why is it I always find these things when posting them in discord?
This commit is contained in:
parent
6af960cef2
commit
02bf7dbc03
1 changed files with 1 additions and 1 deletions
|
@ -1321,7 +1321,7 @@ jump_statement
|
|||
if (break_label) {
|
||||
$$ = goto_expr (break_label);
|
||||
} else {
|
||||
error (nullptr, "continue outside of loop or switch");
|
||||
error (nullptr, "break outside of loop or switch");
|
||||
}
|
||||
}
|
||||
| RETURN ';' { $$ = new_return_expr (nullptr); }
|
||||
|
|
Loading…
Reference in a new issue