[qfcc] Correct an error message

Why is it I always find these things when posting them in discord?
This commit is contained in:
Bill Currie 2025-02-18 12:53:16 +09:00
parent 6af960cef2
commit 02bf7dbc03

View file

@ -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); }