From: Karel Zak Date: Tue, 16 Aug 2011 08:20:45 +0000 (+0200) Subject: blockdev: indent usage() X-Git-Tag: v2.20-rc2~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=637775c798d42673f136a8b87a10f764c20440b1;p=thirdparty%2Futil-linux.git blockdev: indent usage() Signed-off-by: Karel Zak --- diff --git a/disk-utils/blockdev.c b/disk-utils/blockdev.c index cb9a296b75..338ecf176e 100644 --- a/disk-utils/blockdev.c +++ b/disk-utils/blockdev.c @@ -180,19 +180,19 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) { size_t i; fprintf(out, _("\nUsage:\n" - " %1$s -V\n" - " %1$s --report [devices]\n" - " %1$s [-v|-q] commands devices\n\n" + " %1$s -V\n" + " %1$s --report [devices]\n" + " %1$s [-v|-q] commands devices\n\n" "Available commands:\n"), program_invocation_short_name); - fprintf(out, _(" %-25s get size in 512-byte sectors\n"), "--getsz"); + fprintf(out, _(" %-25s get size in 512-byte sectors\n"), "--getsz"); for (i = 0; i < ARRAY_SIZE(bdcms); i++) { if (bdcms[i].argname) - fprintf(out, " %s %-*s %s\n", bdcms[i].name, + fprintf(out, " %s %-*s %s\n", bdcms[i].name, (int)(24 - strlen(bdcms[i].name)), bdcms[i].argname, _(bdcms[i].help)); else - fprintf(out, " %-25s %s\n", bdcms[i].name, + fprintf(out, " %-25s %s\n", bdcms[i].name, _(bdcms[i].help)); } fputc('\n', out);