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 <dsterba@suse.com>
This commit is contained in:
David Sterba 2024-06-17 22:43:53 +02:00 committed by Qu Wenruo
parent 52cccb4bfd
commit a382eed70d

View file

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