summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-02-02 15:32:11 +0100
committerDavid Sterba <dsterba@suse.cz>2015-03-24 19:14:06 +0100
commit3f312d500b732d8047f62a6ef81a6aefb3c83704 (patch)
treea500b94074d1b6e0a815a22237402e94196d6d41 /mkfs.c
parentbc400acbffad2bf1b0fa1e431260cd70dbe6fcb4 (diff)
btrfs-progs: mkfs, align help strings
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/mkfs.c b/mkfs.c
index 8fff082c..521c0ca6 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -272,21 +272,21 @@ static void print_usage(void)
{
fprintf(stderr, "usage: mkfs.btrfs [options] dev [ dev ... ]\n");
fprintf(stderr, "options:\n");
- fprintf(stderr, "\t -A --alloc-start the offset to start the FS\n");
- fprintf(stderr, "\t -b --byte-count total number of bytes in the FS\n");
- fprintf(stderr, "\t -d --data data profile, raid0, raid1, raid5, raid6, raid10, dup or single\n");
- fprintf(stderr, "\t -f --force force overwrite of existing filesystem\n");
- fprintf(stderr, "\t -l --leafsize size of btree leaves\n");
- fprintf(stderr, "\t -L --label set a label\n");
- fprintf(stderr, "\t -m --metadata metadata profile, values like data profile\n");
- fprintf(stderr, "\t -M --mixed mix metadata and data together\n");
- fprintf(stderr, "\t -n --nodesize size of btree nodes\n");
- fprintf(stderr, "\t -s --sectorsize min block allocation (may not mountable by current kernel)\n");
- fprintf(stderr, "\t -r --rootdir the source directory\n");
- fprintf(stderr, "\t -K --nodiscard do not perform whole device TRIM\n");
- fprintf(stderr, "\t -O --features comma separated list of filesystem features\n");
- fprintf(stderr, "\t -U --uuid specify the filesystem UUID\n");
- fprintf(stderr, "\t -V --version print the mkfs.btrfs version and exit\n");
+ fprintf(stderr, "\t-A|--alloc-start the offset to start the FS\n");
+ fprintf(stderr, "\t-b|--byte-count total number of bytes in the FS\n");
+ fprintf(stderr, "\t-d|--data data profile, raid0, raid1, raid5, raid6, raid10, dup or single\n");
+ fprintf(stderr, "\t-f|--force force overwrite of existing filesystem\n");
+ fprintf(stderr, "\t-l|--leafsize size of btree leaves\n");
+ fprintf(stderr, "\t-L|--label set a label\n");
+ fprintf(stderr, "\t-m|--metadata metadata profile, values like data profile\n");
+ fprintf(stderr, "\t-M|--mixed mix metadata and data together\n");
+ fprintf(stderr, "\t-n|--nodesize size of btree nodes\n");
+ fprintf(stderr, "\t-s|--sectorsize min block allocation (may not mountable by current kernel)\n");
+ fprintf(stderr, "\t-r|--rootdir the source directory\n");
+ fprintf(stderr, "\t-K|--nodiscard do not perform whole device TRIM\n");
+ fprintf(stderr, "\t-O|--features comma separated list of filesystem features\n");
+ fprintf(stderr, "\t-U|--uuid specify the filesystem UUID\n");
+ fprintf(stderr, "\t-V|--version print the mkfs.btrfs version and exit\n");
fprintf(stderr, "%s\n", PACKAGE_STRING);
exit(1);
}