diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-25 20:05:11 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-26 00:00:16 +0100 |
commit | 5b94ec50249ae273132b010349592127df060fbb (patch) | |
tree | 60a9f1dd6b4bfd19561a845dce4944340dc48e65 /eigrpd | |
parent | *: remove useless return variables (diff) | |
download | frr-5b94ec50249ae273132b010349592127df060fbb.tar.xz frr-5b94ec50249ae273132b010349592127df060fbb.zip |
*: remove unnecessary semicolon from switches
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'eigrpd')
-rw-r--r-- | eigrpd/eigrp_fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_fsm.c b/eigrpd/eigrp_fsm.c index 374114cf5..22f5a5ddb 100644 --- a/eigrpd/eigrp_fsm.c +++ b/eigrpd/eigrp_fsm.c @@ -231,7 +231,7 @@ static const char *fsm_state2str(enum eigrp_fsm_events event) return "Query from Successor while in active state"; case EIGRP_FSM_EVENT_LR_FCN: return "Last Reply Event, Feasibility not satisfied"; - }; + } return "Unknown"; } |