mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-12 16:59:51 +00:00
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:
parent
21a858b2ea
commit
d88acfbafd
@ -353,9 +353,7 @@ static int print_encoded_write(const char *path, const void *data, u64 offset,
|
|||||||
u32 compression, u32 encryption, void *user)
|
u32 compression, u32 encryption, void *user)
|
||||||
{
|
{
|
||||||
return PRINT_DUMP(user, path, "encoded_write",
|
return PRINT_DUMP(user, path, "encoded_write",
|
||||||
"offset=%llu len=%llu, unencoded_file_len=%llu, "
|
"offset=%llu len=%llu unencoded_file_len=%llu unencoded_len=%llu unencoded_offset=%llu compression=%u encryption=%u",
|
||||||
"unencoded_len=%llu, unencoded_offset=%llu, "
|
|
||||||
"compression=%u, encryption=%u",
|
|
||||||
offset, len, unencoded_file_len, unencoded_len,
|
offset, len, unencoded_file_len, unencoded_len,
|
||||||
unencoded_offset, compression, encryption);
|
unencoded_offset, compression, encryption);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user