btrfs-progs: Use a single tab for 'leafsize (deprecated)' row
Since this row is longer than the rest it's enough to use a single tab character to delimig the value from caption. Without this patch output looked like: nodesize 16384 leafsize (deprecated) 16384 With it: nodesize 16384 leafsize (deprecated) 16384 No functional changes just making the output a bit neater. Signed-off-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
e10b8a839c
commit
2e84a13a10
|
@ -410,7 +410,7 @@ static void dump_superblock(struct btrfs_super_block *sb, int full)
|
|||
(unsigned long long)btrfs_super_sectorsize(sb));
|
||||
printf("nodesize\t\t%llu\n",
|
||||
(unsigned long long)btrfs_super_nodesize(sb));
|
||||
printf("leafsize (deprecated)\t\t%u\n",
|
||||
printf("leafsize (deprecated)\t%u\n",
|
||||
le32_to_cpu(sb->__unused_leafsize));
|
||||
printf("stripesize\t\t%llu\n",
|
||||
(unsigned long long)btrfs_super_stripesize(sb));
|
||||
|
|
Loading…
Reference in New Issue