diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-09 03:55:07 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-09 03:55:16 -0500 |
commit | ef25411bdcbd20c46380f38b3d07dfc21497154f (patch) | |
tree | cb353fa933e20821deb4da18db56cb3b2b81118d | |
parent | 8b31dfb3500fc642ccd36f0aaa0c3ab1b54abb1c (diff) |
fixup! bcachefs: cmd_set_option() can now set device options on multi device filesystems
-rw-r--r-- | c_src/cmd_option.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/c_src/cmd_option.c b/c_src/cmd_option.c index 07c0d03d..eaf3429f 100644 --- a/c_src/cmd_option.c +++ b/c_src/cmd_option.c @@ -72,6 +72,7 @@ int cmd_set_option(int argc, char *argv[]) if (kstrtoint(optarg, 10, &dev_idx)) die("error parsing %s", optarg); darray_push(&dev_idxs, dev_idx); + break; } case 'h': set_option_usage(); |