From eccba6261a2060aed34f3a777b5f137afbb96177 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Mon, 19 Sep 2016 19:43:24 +0200 Subject: [PATCH] btrfs-progs: subvol create: remove v from getopt The option 'v' was mistakenly added in 2ed161bd281beca29feebebbc8c4227cc6e918c3 but there's no such option for create at the moment, remove it. Signed-off-by: David Sterba --- cmds-subvolume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds-subvolume.c b/cmds-subvolume.c index c639553..b3f7cbc 100644 --- a/cmds-subvolume.c +++ b/cmds-subvolume.c @@ -128,7 +128,7 @@ static int cmd_subvol_create(int argc, char **argv) DIR *dirstream = NULL; while (1) { - int c = getopt(argc, argv, "c:i:v"); + int c = getopt(argc, argv, "c:i:"); if (c < 0) break; -- 2.7.4