Skip to content

Commit

Permalink
Merge pull request #2417 from fgast/wrong_route_description
Browse files Browse the repository at this point in the history
Fix wrong route type in error message
  • Loading branch information
liviuchircu committed Feb 24, 2021
2 parents bfb158d + 786fd9b commit 5290203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfg.y
Expand Up @@ -1527,7 +1527,7 @@ event_route_stm: ROUTE_EVENT LBRACK route_name RBRACK LBRACE actions RBRACE {
if (i_tmp==-1) YYABORT;
push($6, &sroutes->event[i_tmp].a);
}
| ROUTE_EVENT error { yyerror("invalid timer_route statement"); }
| ROUTE_EVENT error { yyerror("invalid event_route statement"); }
;


Expand Down

0 comments on commit 5290203

Please sign in to comment.