From f551548372efa9a22a34e4f1b74fa794d304e6f5 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Wed, 13 Jul 2016 19:41:55 +0200 Subject: btrfs-progs: do not set optind if not necessary In the subcommand callbacks that are called just once, we don't need to explicitly reset optind. Signed-off-by: David Sterba --- cmds-inspect.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'cmds-inspect.c') diff --git a/cmds-inspect.c b/cmds-inspect.c index 2ae44be2..4b7cea07 100644 --- a/cmds-inspect.c +++ b/cmds-inspect.c @@ -96,7 +96,6 @@ static int cmd_inspect_inode_resolve(int argc, char **argv) int ret; DIR *dirstream = NULL; - optind = 1; while (1) { int c = getopt(argc, argv, "v"); if (c < 0) @@ -151,7 +150,6 @@ static int cmd_inspect_logical_resolve(int argc, char **argv) char *path_ptr; DIR *dirstream = NULL; - optind = 1; while (1) { int c = getopt(argc, argv, "Pvs:"); if (c < 0) -- cgit v1.2.1