From a382eed70dcb4f1a5db83b67b4f33e9d0ca2d47d Mon Sep 17 00:00:00 2001 From: David Sterba Date: Mon, 17 Jun 2024 22:43:53 +0200 Subject: [PATCH] btrfs-progs: receive dump: fix formatting of encoded write message The separator of key=value is only one or more space character, the 'encoded_write' also uses ',' which is inconsistent with the rest. Signed-off-by: David Sterba --- cmds/receive-dump.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmds/receive-dump.c b/cmds/receive-dump.c index c3e711be..503da329 100644 --- a/cmds/receive-dump.c +++ b/cmds/receive-dump.c @@ -353,9 +353,7 @@ static int print_encoded_write(const char *path, const void *data, u64 offset, u32 compression, u32 encryption, void *user) { return PRINT_DUMP(user, path, "encoded_write", - "offset=%llu len=%llu, unencoded_file_len=%llu, " - "unencoded_len=%llu, unencoded_offset=%llu, " - "compression=%u, encryption=%u", +"offset=%llu len=%llu unencoded_file_len=%llu unencoded_len=%llu unencoded_offset=%llu compression=%u encryption=%u", offset, len, unencoded_file_len, unencoded_len, unencoded_offset, compression, encryption); }