From a031a8111ef53863c6ccdc838122cf5e12143375 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 18 Nov 2012 17:58:13 -0600 Subject: [PATCH] usage_all(): Print leading whitespace --- programs/imagex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/imagex.c b/programs/imagex.c index 2ba1a076..ec383d6c 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -1459,7 +1459,7 @@ static void usage_all() { puts("IMAGEX: Usage:"); for (int i = 0; i < ARRAY_LEN(usage_strings); i++) - fputs(usage_strings[i], stdout); + printf(" %s", usage_strings[i]); static const char *extra = " imagex --help\n" " imagex --version\n" -- 2.43.0