summaryrefslogtreecommitdiff
path: root/cmd_fs.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2018-08-15 19:41:36 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2018-08-15 19:41:45 -0400
commit9c62b2b4f11374cbffe88e0c31b9b1ab32a2863a (patch)
tree34d3b7320bdbf4da241ad48465d75d6c8e2454f6 /cmd_fs.c
parentcecf7e05e151499a3e96dc05f97f37c14162e94b (diff)
Include superblock, journal in fs usage output
Diffstat (limited to 'cmd_fs.c')
-rw-r--r--cmd_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_fs.c b/cmd_fs.c
index c5aeb7b..44316fc 100644
--- a/cmd_fs.c
+++ b/cmd_fs.c
@@ -87,7 +87,7 @@ static void print_fs_usage(const char *path, enum units units)
printf("%-20s%12s%12s%12s%12s\n",
"By replicas:", "1x", "2x", "3x", "4x");
- for (j = BCH_DATA_BTREE; j < BCH_DATA_NR; j++) {
+ for (j = BCH_DATA_SB; j < BCH_DATA_NR; j++) {
printf_pad(20, " %s:", bch2_data_types[j]);
for (i = 0; i < BCH_REPLICAS_MAX; i++)