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:
Cary R 2010-03-04 21:54:57 -08:00 committed by Stephen Williams
parent df7d65f4d6
commit 08d0337e50
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}