diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-03-22 00:16:31 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-04-22 19:31:27 -0400 |
commit | 8c69628d9527a1fed31289649ef53e732bfdd5e3 (patch) | |
tree | a5e6a56537b8406e22eede8b1406ff4fee9dde11 /lib/printbuf.c | |
parent | ede8fb590f16cab304dc17ca6a4bca1160410f04 (diff) |
bcachefs: Convert to lib/printbuf.c
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'lib/printbuf.c')
-rw-r--r-- | lib/printbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/printbuf.c b/lib/printbuf.c index e0dfa82cdad6..4312e83f209b 100644 --- a/lib/printbuf.c +++ b/lib/printbuf.c @@ -221,7 +221,7 @@ void pr_uuid(struct printbuf *out, u8 *uuid) char uuid_str[40]; uuid_unparse_lower(uuid, uuid_str); - pr_buf(out, uuid_str); + pr_buf(out, "%s", uuid_str); } #endif |