From 02bf7dbc03baeb6f505f6b56f1c9b5ca737cf28c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 18 Feb 2025 12:53:16 +0900 Subject: [PATCH] [qfcc] Correct an error message Why is it I always find these things when posting them in discord? --- tools/qfcc/source/glsl-parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/glsl-parse.y b/tools/qfcc/source/glsl-parse.y index 7799b3796..1a0d48206 100644 --- a/tools/qfcc/source/glsl-parse.y +++ b/tools/qfcc/source/glsl-parse.y @@ -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); }