From: Kent Overstreet Date: Fri, 23 Dec 2022 01:51:02 +0000 (-0500) Subject: bcachefs: Add a missing bch2_err_str() call X-Git-Tag: io_uring-6.7-2023-11-10~119^2~616 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=67ace2724603378fec0c5321736e2772d459fd8c;p=linux-block.git bcachefs: Add a missing bch2_err_str() call Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c index 976c336f294a..55819378fd4a 100644 --- a/fs/bcachefs/recovery.c +++ b/fs/bcachefs/recovery.c @@ -1564,6 +1564,6 @@ int bch2_fs_initialize(struct bch_fs *c) return 0; err: - pr_err("Error initializing new filesystem: %s (%i)", err, ret); + pr_err("Error initializing new filesystem: %s (%s)", err, bch2_err_str(ret)); return ret; }