Commit 590b91cf authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: Revert UUID format-specifier change

"bcachefs: Log & error message improvements" accidentally changed the
format specifier we use for converting UUIDs to strings, which broke
mounting of encrypted filesystems - this patch reverts that change.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
parent 718ce1eb
......@@ -372,7 +372,7 @@ static inline void pr_time(struct printbuf *out, u64 _time)
#ifdef __KERNEL__
static inline void uuid_unparse_lower(u8 *uuid, char *out)
{
sprintf(out, "%plU", uuid);
sprintf(out, "%pUb", uuid);
}
#else
#include <uuid/uuid.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment