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-05 16:35:14 -08:00
committed by Stephen Williams
parent df7d65f4d6
commit 08d0337e50
+1 -1
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;
}