diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2024-07-16 19:34:28 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2024-07-16 19:35:12 +0200 |
commit | b8ab1b8c4b8704f64c28c2029d42faf9cfee1415 (patch) | |
tree | d290ad2ba59cc02ce549e4eb3a351c34b5edbdce /src/parser_bison.y | |
parent | 1fc78397e9a1fb5e41841b8b4e92a9eb9536c6f1 (diff) |
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 <pablo@netfilter.org>
Diffstat (limited to 'src/parser_bison.y')
-rw-r--r-- | src/parser_bison.y | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |