Add missing strtoul argument
The previous patch missed this some how. I don't know how it compiled
correctly before!
(cherry picked from commit 08d0337e50)
This commit is contained in:
parent
d14c3449e4
commit
5680dec04c
|
|
@ -75,7 +75,7 @@ static int yywrap(void)
|
||||||
|
|
||||||
/* Integer values */
|
/* Integer values */
|
||||||
[0-9]+ {
|
[0-9]+ {
|
||||||
yylval.int_val = strtoul(yytext, 0);
|
yylval.int_val = strtoul(yytext, 0, 10);
|
||||||
return INTEGER;
|
return INTEGER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue