]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
tc: fix duplicate fall-through
authorStephen Hemminger <stephen@networkplumber.org>
Mon, 14 Feb 2022 21:07:49 +0000 (13:07 -0800)
committerStephen Hemminger <stephen@networkplumber.org>
Mon, 14 Feb 2022 21:07:49 +0000 (13:07 -0800)
Cleanup from last patch

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
tc/tc_util.c

index b82dbd5dc75df6fcd1bf91a7d4939d61e297bcfb..ba34aed778475d612a67207f1f9b578ec57d873c 100644 (file)
@@ -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)