btrfs-progs: remove a dead break before usage()
authorGui Hecheng <guihc.fnst@cn.fujitsu.com>
Thu, 13 Feb 2014 03:16:36 +0000 (11:16 +0800)
committerChris Mason <clm@fb.com>
Fri, 21 Mar 2014 13:23:16 +0000 (06:23 -0700)
The usage() in help.c calls exit(1), so the break behind is nonsense
and should be removed.

Signed-off-by: Gui Hecheng <guihc.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
cmds-property.c

index 3d1f18c..df53f91 100644 (file)
@@ -335,7 +335,6 @@ static void parse_args(int argc, char **argv,
                        break;
                default:
                        usage(usage_str);
-                       break;
                }
        }