summaryrefslogtreecommitdiff
path: root/fs/bcachefs/opts.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2022-04-02 23:30:37 +0300
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-23 00:09:29 +0300
commitc32fc674d4ca13f3b889693a2b59365d93a77144 (patch)
tree90a0fffee0573efc6e077ce143035c9d22b724ef /fs/bcachefs/opts.c
parent66d90823857ed9196ef52361518ab703e468c53b (diff)
downloadlinux-c32fc674d4ca13f3b889693a2b59365d93a77144.tar.xz
bcachefs: Fix pr_buf() calls
In a few places we were passing a variable to pr_buf() for the format string - oops. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/opts.c')
-rw-r--r--fs/bcachefs/opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/opts.c b/fs/bcachefs/opts.c
index 77fbb7d2194e..385451ef865e 100644
--- a/fs/bcachefs/opts.c
+++ b/fs/bcachefs/opts.c
@@ -324,7 +324,7 @@ void bch2_opt_to_text(struct printbuf *out,
if (flags & OPT_SHOW_FULL_LIST)
bch2_string_opt_to_text(out, opt->choices, v);
else
- pr_buf(out, opt->choices[v]);
+ pr_buf(out, "%s", opt->choices[v]);
break;
case BCH_OPT_FN:
opt->to_text(out, c, sb, v);