btrfs-progs: check: fix indentation of --clear-ino-cache option

Help string for "--clear-ino-cache" option is not following the
indentation of other help strings:

      repair options:
           --init-csum-tree            create a new CRC tree
           --init-extent-tree          create a new extent tree
           --clear-space-cache v1|v2   clear space cache for v1 or v2
           --clear-ino-cache 	    clear ino cache leftover items

The problem is caused by the usage of tab instead of space.

Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Qu Wenruo 2021-09-23 16:56:49 +08:00 committed by David Sterba
parent 53ec59ead0
commit 9d2460fb3f
1 changed files with 1 additions and 1 deletions

View File

@ -10354,7 +10354,7 @@ static const char * const cmd_check_usage[] = {
" --init-csum-tree create a new CRC tree",
" --init-extent-tree create a new extent tree",
" --clear-space-cache v1|v2 clear space cache for v1 or v2",
" --clear-ino-cache clear ino cache leftover items",
" --clear-ino-cache clear ino cache leftover items",
" check and reporting options:",
" --check-data-csum verify checksums of data blocks",
" -Q|--qgroup-report print a report on qgroup consistency",