Skip to content

Commit

Permalink
Fix wrong route type in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
fgast committed Feb 24, 2021
1 parent bfb158d commit 786fd9b
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 786fd9b

Please sign in to comment.