Skip to content

Commit

Permalink
thecl: yylval, not yyval
Browse files Browse the repository at this point in the history
  • Loading branch information
ManDude committed Oct 27, 2019
1 parent 33fd962 commit a25ccf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thecl/ecsscan.l
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ ins_[0-9]+ {
}
"false" {
/* boolean "false" */
yyval.integer = 0;
yylval.integer = 0;
return INTEGER;
}
"true" {
/* boolean "true" */
yyval.integer = 1;
yylval.integer = 1;
return INTEGER;
}

Expand Down

0 comments on commit a25ccf8

Please sign in to comment.