diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2021-02-20 22:31:38 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2021-02-20 22:34:09 -0500 |
commit | 9e5d774875df1605c23f38f1da6c9dbb49826471 (patch) | |
tree | 453894e3c500ede168ec7840c7c0259546ce0bba /cmd_debug.c | |
parent | b64369c59fb5fbf87ebdf0a1061a12f7a903cbc1 (diff) |
Update bcachefs sources to e2b8120595 bcachefs: Use x-macros for more enums
Diffstat (limited to 'cmd_debug.c')
-rw-r--r-- | cmd_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd_debug.c b/cmd_debug.c index c4dd24b..c0ba3f2 100644 --- a/cmd_debug.c +++ b/cmd_debug.c @@ -114,7 +114,7 @@ int cmd_dump(int argc, char *argv[]) opt_set(opts, nochanges, true); opt_set(opts, norecovery, true); opt_set(opts, degraded, true); - opt_set(opts, errors, BCH_ON_ERROR_CONTINUE); + opt_set(opts, errors, BCH_ON_ERROR_continue); opt_set(opts, fix_errors, FSCK_OPT_YES); while ((opt = getopt(argc, argv, "o:fvh")) != -1) @@ -447,7 +447,7 @@ int cmd_list(int argc, char *argv[]) opt_set(opts, nochanges, true); opt_set(opts, norecovery, true); opt_set(opts, degraded, true); - opt_set(opts, errors, BCH_ON_ERROR_CONTINUE); + opt_set(opts, errors, BCH_ON_ERROR_continue); while ((opt = getopt(argc, argv, "b:s:e:i:m:fvh")) != -1) switch (opt) { @@ -540,7 +540,7 @@ int cmd_list_journal(int argc, char *argv[]) opt_set(opts, nochanges, true); opt_set(opts, norecovery, true); opt_set(opts, degraded, true); - opt_set(opts, errors, BCH_ON_ERROR_CONTINUE); + opt_set(opts, errors, BCH_ON_ERROR_continue); opt_set(opts, fix_errors, FSCK_OPT_YES); opt_set(opts, keep_journal, true); |