From 637775c798d42673f136a8b87a10f764c20440b1 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 16 Aug 2011 10:20:45 +0200 Subject: [PATCH] blockdev: indent usage() Signed-off-by: Karel Zak --- disk-utils/blockdev.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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); -- 2.47.3