From a38d305d15c6a27084d5ebc1c79a831d3ac45b22 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Mon, 14 Feb 2022 13:07:49 -0800 Subject: [PATCH] tc: fix duplicate fall-through Cleanup from last patch Signed-off-by: Stephen Hemminger --- tc/tc_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/tc_util.c b/tc/tc_util.c index b82dbd5dc..ba34aed77 100644 --- a/tc/tc_util.c +++ b/tc/tc_util.c @@ -475,7 +475,7 @@ static int parse_action_control_slash_spaces(int *argc_p, char ***argv_p, result_p = &result2; NEXT_ARG(); /* fall-through */ - case 0: /* fall-through */ + case 0: ret = parse_action_control(&argc, &argv, result_p, allow_num); if (ret) -- 2.47.2