summaryrefslogtreecommitdiff
path: root/cmds-check.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmds-check.c')
-rw-r--r--cmds-check.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmds-check.c b/cmds-check.c
index ed8c6984..d5cb94f9 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -9221,7 +9221,6 @@ int cmd_check(int argc, char **argv)
while(1) {
int c;
- int option_index = 0;
enum { OPT_REPAIR = 257, OPT_INIT_CSUM, OPT_INIT_EXTENT,
OPT_CHECK_CSUM, OPT_READONLY };
static const struct option long_options[] = {
@@ -9238,8 +9237,7 @@ int cmd_check(int argc, char **argv)
{ NULL, 0, NULL, 0}
};
- c = getopt_long(argc, argv, "as:br:", long_options,
- &option_index);
+ c = getopt_long(argc, argv, "as:br:", long_options, NULL);
if (c < 0)
break;
switch(c) {