mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
fix sign extension bug
Submitted by: Nikolai Saoukh <nms@ethereal.ru>
This commit is contained in:
parent
9a40134f8d
commit
f5d59814ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in a new issue