From 57143a216eadde6c33c25f2df2c879632c8212bc Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 8 May 2024 14:19:17 +0200 Subject: [PATCH] dmsetup: use tab for indent Use \t for help indention. --- libdm/dm-tools/dmsetup.c | 42 ++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/libdm/dm-tools/dmsetup.c b/libdm/dm-tools/dmsetup.c index cdfb80742..fd6c7da82 100644 --- a/libdm/dm-tools/dmsetup.c +++ b/libdm/dm-tools/dmsetup.c @@ -6321,16 +6321,16 @@ static void _stats_usage(FILE *out) int i; fprintf(out, "Usage:\n\n" - "%s\n" - " [-h|--help]\n" - " [-v|--verbose [-v|--verbose ...]]\n" - " [--areas ] [--areasize ]\n" - " [--userdata ] [--clear]\n" - " [--count ] [--interval ]\n" - " [-o ] [-O|--sort ]\n" - " [--programid ]\n" - " [--start ] [--length ]\n" - " [--segments] [--units ]\n\n", + "%s\n\t" + "[-h|--help]\n\t" + "[-v|--verbose [-v|--verbose ...]]\n\t" + "[--areas ] [--areasize ]\n\t" + "[--userdata ] [--clear]\n\t" + "[--count ] [--interval ]\n\t" + "[-o ] [-O|--sort ]\n\t" + " [--programid ]\n\t" + "[--start ] [--length ]\n\t" + "[--segments] [--units ]\n\n", _base_commands[_base_command].name); for (i = 0; i < DM_ARRAY_SIZE(_stats_subcommands); i++) @@ -6345,17 +6345,17 @@ static void _dmsetup_usage(FILE *out) int i; fprintf(out, "Usage:\n\n" - "%s\n" - " [--version] [-h|--help [-c|-C|--columns]]\n" - " [-v|--verbose [-v|--verbose ...]] [-f|--force]\n" - " [--checks] [--manglename {none|hex|auto}]\n" - " [-r|--readonly] [--noopencount] [--noflush] [--nolockfs] [--inactive]\n" - " [--udevcookie ] [--noudevrules] [--noudevsync] [--verifyudev]\n" - " [-y|--yes] [--readahead {[+]|auto|none}] [--retry]\n" - " [-c|-C|--columns] [-o ] [-O|--sort ]\n" - " [-S|--select ] [--nameprefixes]\n" - " [--noheadings|--headings none|abbrev|full|0|1|2]\n" - " [--separator ]\n\n", + "%s\n\t" + "[--version] [-h|--help [-c|-C|--columns]]\n\t" + "[-v|--verbose [-v|--verbose ...]] [-f|--force]\n\t" + "[--checks] [--manglename {none|hex|auto}]\n\t" + "[-r|--readonly] [--noopencount] [--noflush] [--nolockfs] [--inactive]\n\t" + "[--udevcookie ] [--noudevrules] [--noudevsync] [--verifyudev]\n\t" + "[-y|--yes] [--readahead {[+]|auto|none}] [--retry]\n\t" + "[-c|-C|--columns] [-o ] [-O|--sort ]\n\t" + "[-S|--select ] [--nameprefixes]\n\t" + "[--noheadings|--headings none|abbrev|full|0|1|2]\n\t" + "[--separator ]\n\n", _base_commands[_base_command].name); for (i = 0; i < DM_ARRAY_SIZE(_dmsetup_commands); ++i)