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