From 08d0337e5065e7787232e4219306571889c3ee39 Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 4 Mar 2010 21:54:57 -0800 Subject: [PATCH] Add missing strtoul argument The previous patch missed this some how. I don't know how it compiled correctly before! --- vpi/sdf_lexor.lex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpi/sdf_lexor.lex b/vpi/sdf_lexor.lex index dcbd22021..c4b03d3fe 100644 --- a/vpi/sdf_lexor.lex +++ b/vpi/sdf_lexor.lex @@ -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; }