aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mklocale
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1999-04-01 10:22:48 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1999-04-01 10:22:48 +0000
commitf5d59814ac23f45d55ff2afc57134d8e233bb9fb (patch)
treed5ab3a1294e5f34a692b490e91ff713cda37d5e7 /usr.bin/mklocale
parent9a40134f8dd915ef42a4745b88f379f9373efc3d (diff)
Notes
Diffstat (limited to 'usr.bin/mklocale')
-rw-r--r--usr.bin/mklocale/lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mklocale/lex.l b/usr.bin/mklocale/lex.l
index 0e2f1a9833b3..bd5923a53413 100644
--- a/usr.bin/mklocale/lex.l
+++ b/usr.bin/mklocale/lex.l
@@ -53,7 +53,7 @@ XDIGIT [0-9a-fA-F]
W [\t\n\r ]
%%
-\'.\' { yylval.rune = yytext[1];
+\'.\' { yylval.rune = (unsigned char)yytext[1];
return(RUNE); }
'\\a' { yylval.rune = '\a';