mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
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:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user