From b8ab1b8c4b8704f64c28c2029d42faf9cfee1415 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 16 Jul 2024 19:34:28 +0200 Subject: [PATCH] parser_bison: remove one more utf-8 character Still one more in an error in the parser, replace it found via git grep. Fixes: c92ec3b21979 ("src: remove utf-8 character in printf lines") Signed-off-by: Pablo Neira Ayuso --- src/parser_bison.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser_bison.y b/src/parser_bison.y index 11ca957b..10105f15 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -4251,7 +4251,7 @@ variable_expr : '$' identifier sym = symbol_lookup_fuzzy(scope, $2); if (sym) { erec_queue(error(&@2, "unknown identifier '%s'; " - "did you mean identifier ‘%s’?", + "did you mean identifier '%s’?", $2, sym->identifier), state->msgs); } else { -- 2.47.2