From cde1820a57e0ea5b20c991a34d474148da93715f Mon Sep 17 00:00:00 2001 From: Kolja Waschk Date: Wed, 7 Nov 2007 09:04:50 +0000 Subject: [PATCH] [ 1194137 ] better SVF diagnostics (compile fix) git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@728 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/src/svf/svf_flex.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */