diff --git a/jtag/src/svf/svf_flex.l b/jtag/src/svf/svf_flex.l index aa6b59b3..26c7ee48 100644 --- a/jtag/src/svf/svf_flex.l +++ b/jtag/src/svf/svf_flex.l @@ -114,7 +114,7 @@ COMMENT (!.*)|("//".*)[^\n] cstring = calloc(strlen(yytext) + 1, sizeof(char)); strcpy(cstring, yytext); - yylval.cvalue = cstring; + yylval->cvalue = cstring; return(HEXA_NUM); } /* end of hexadecimal value */