summaryrefslogtreecommitdiff
path: root/cmds-subvolume.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2016-09-19 19:43:24 +0200
committerDavid Sterba <dsterba@suse.com>2016-09-21 11:50:38 +0200
commiteccba6261a2060aed34f3a777b5f137afbb96177 (patch)
tree349d2952bf5bfb426c7e16c370c965558c40d337 /cmds-subvolume.c
parentc68759eaa6fbb14529a39719be3a9fb5f7014098 (diff)
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 <dsterba@suse.com>
Diffstat (limited to 'cmds-subvolume.c')
-rw-r--r--cmds-subvolume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds-subvolume.c b/cmds-subvolume.c
index c6395535..b3f7cbcb 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;