diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-03-22 00:16:31 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-06-09 15:37:02 -0400 |
commit | 9aca0622138661bc5ecf6f885408f9b87001cfb9 (patch) | |
tree | 1dc649c5df2e361046b7b61eafd983e76cc4def8 /fs/bcachefs/recovery.c | |
parent | 8839a86c06a3f94799aece6aa0b673341c81d17b (diff) |
bcachefs: Convert to lib/printbuf.cprintbuf_v3_bcachefs
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/recovery.c')
-rw-r--r-- | fs/bcachefs/recovery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c index 1f14c0b6d56c..480abf13afcb 100644 --- a/fs/bcachefs/recovery.c +++ b/fs/bcachefs/recovery.c @@ -856,12 +856,12 @@ static int verify_superblock_clean(struct bch_fs *c, if (k1) bch2_bkey_val_to_text(&buf1, c, bkey_i_to_s_c(k1)); else - pr_buf(&buf1, "(none)"); + prt_printf(&buf1, "(none)"); if (k2) bch2_bkey_val_to_text(&buf2, c, bkey_i_to_s_c(k2)); else - pr_buf(&buf2, "(none)"); + prt_printf(&buf2, "(none)"); mustfix_fsck_err_on(!k1 || !k2 || IS_ERR(k1) || |