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:
Cary R 2010-03-04 21:54:57 -08:00 committed by Stephen Williams
parent d14c3449e4
commit 5680dec04c
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;
}