From 7fc99ec2856445128fdfa3095a857cffb7403e3d Mon Sep 17 00:00:00 2001 From: Gui Hecheng Date: Thu, 13 Feb 2014 11:16:36 +0800 Subject: [PATCH] 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 Signed-off-by: David Sterba Signed-off-by: Chris Mason --- cmds-property.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cmds-property.c b/cmds-property.c index 3d1f18c..df53f91 100644 --- a/cmds-property.c +++ b/cmds-property.c @@ -335,7 +335,6 @@ static void parse_args(int argc, char **argv, break; default: usage(usage_str); - break; } } -- 2.7.4