Commit c2c8d98
committed
btrfs-progs: print-tree: fix the format string for EXTENT_OWNER_REF_KEY
There is missing tab for EXTENT_OWNER_REF_KEY, which results output not
following the same indent:
item 13 key (84082688 EXTENT_ITEM 1048576) itemoff 15763 itemsize 62
refs 1 gen 14 flags DATA
(172 0x100) textent owner root 256 <<<
(178 0xdea30debbf5f519) extent data backref root 256 objectid 258 offset 0 count 1
And it's caused by a misplaced 't':
printf("\t\(%u 0x%llx) textent owner root %llu\n",
There is no special escape sequence "\(", nor the word "textent", it
looks like the 't' is incorrectly placed by commit ad8a831
("btrfs-progs: dump-tree: output the sequence number for inline
references").
Fix it so that the output is correct now:
item 13 key (84082688 EXTENT_ITEM 1048576) itemoff 15763 itemsize 62
refs 1 gen 14 flags DATA
(172 0x100) textent owner root 256
(178 0xdea30debbf5f519) extent data backref root 256 objectid 258 offset 0 count 1
Signed-off-by: Qu Wenruo <wqu@suse.com>1 parent 208d38e commit c2c8d98
1 file changed
Lines changed: 1 addition & 1 deletion
File tree
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
579 | 579 | | |
580 | 580 | | |
581 | 581 | | |
582 | | - | |
| 582 | + | |
583 | 583 | | |
584 | 584 | | |
585 | 585 | | |
| |||
0 commit comments