bcachefs: Add a missing bch2_err_str() call

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2022-12-22 20:51:02 -05:00
parent 47a0ea6abe
commit 67ace27246

View File

@ -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;
}