btrfs-progs: remove a dead break before usage()

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>
This commit is contained in:
Gui Hecheng 2014-02-13 11:16:36 +08:00 committed by Chris Mason
parent c3dcb083d9
commit 7fc99ec285
1 changed files with 0 additions and 1 deletions

View File

@ -335,7 +335,6 @@ static void parse_args(int argc, char **argv,
break;
default:
usage(usage_str);
break;
}
}