summaryrefslogtreecommitdiff
path: root/print-tree.c
diff options
context:
space:
mode:
authorZach Brown <zab@redhat.com>2013-01-21 16:52:15 -0800
committerZach Brown <zab@redhat.com>2013-02-05 16:09:39 -0800
commitda3a185f445957787db25a4a33e8992e634e2c37 (patch)
tree28f236e2fb2e94d0354368acb2824cf42c406326 /print-tree.c
parent4b76e34093162945e8404e4e6b6754ce35ca3ce5 (diff)
btrfs-progs: break after printing FREE_INO
The free inode objectid would be printed as "FREE_INOQUOTA_TREE" because of a missing break. Signed-off-by: Zach Brown <zab@redhat.com>
Diffstat (limited to 'print-tree.c')
-rw-r--r--print-tree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/print-tree.c b/print-tree.c
index 5739e19b..c9e891bc 100644
--- a/print-tree.c
+++ b/print-tree.c
@@ -569,6 +569,7 @@ static void print_objectid(u64 objectid, u8 type)
break;
case BTRFS_FREE_INO_OBJECTID:
printf("FREE_INO");
+ break;
case BTRFS_QUOTA_TREE_OBJECTID:
printf("QUOTA_TREE");
break;