summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--btrfsck.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/btrfsck.c b/btrfsck.c
index 67f4a9dd..a8510085 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -3501,11 +3501,12 @@ int main(int ac, char **av)
while(1) {
int c;
- c = getopt_long(ac, av, "s:", long_options,
+ c = getopt_long(ac, av, "as:", long_options,
&option_index);
if (c < 0)
break;
switch(c) {
+ case 'a': /* ignored */ break;
case 's':
num = atol(optarg);
bytenr = btrfs_sb_offset(num);