summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-03-23 19:49:51 +0100
committerDavid Sterba <dsterba@suse.cz>2015-04-07 19:25:16 +0200
commit39b3d7c77a551b7c6b2063789797fceeae22b346 (patch)
tree07e532f7d67be372480cea1ede20c5b0342bc54c /mkfs.c
parent7ea86ad28239cfb444cb13951bc536223c9d3da2 (diff)
downloadbtrfs-progs-39b3d7c77a551b7c6b2063789797fceeae22b346.tar.gz
btrfs-progs: print fs features filtered by a mask
mkfs and convert will not support the same features, -O will print only the list according to the given mask. Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkfs.c b/mkfs.c
index 59486bd..8eab0e5 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1208,7 +1208,7 @@ int main(int ac, char **av)
}
free(orig);
if (features & BTRFS_FEATURE_LIST_ALL) {
- btrfs_list_all_fs_features();
+ btrfs_list_all_fs_features(0);
exit(0);
}
break;