Left justify help output
[fio.git] / parse.c
diff --git a/parse.c b/parse.c
index e09b1bbe42998655125d23b00c3b0b7d35214489..84a0f52ab54f025d48a0bca3a4f8650ed421a825 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -537,9 +537,12 @@ int show_cmd_help(struct fio_option *options, const char *name)
 
                if (show_all || match) {
                        found = 1;
-                       printf("%20s: %s\n", o->name, o->help);
-                       if (show_all)
+                       if (match)
+                               printf("%20s: %s\n", o->name, o->help);
+                       if (show_all) {
+                               printf("%-20s: %s\n", o->name, o->help);
                                continue;
+                       }
                }
 
                if (!match)