From: Stephen Hemminger Date: Mon, 14 Feb 2022 21:07:49 +0000 (-0800) Subject: tc: fix duplicate fall-through X-Git-Tag: v5.17.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a38d305d15c6a27084d5ebc1c79a831d3ac45b22;p=thirdparty%2Fiproute2.git tc: fix duplicate fall-through Cleanup from last patch Signed-off-by: Stephen Hemminger --- 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)