From 9fdb81c40a3ef376a036fd7e9990baf37e5f267e Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 4 May 2010 12:19:50 +0100 Subject: [PATCH] xl: Make xl usage summary legible The xl usage summary is illegible with its double spacing and huge gap between the command and its description. Tighten it up. Signed-off-by: Jeremy Fitzhardinge Acked-by: Stefano Stabellini --- tools/libxl/xl_cmdimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index c11358533e..46da813a3a 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -1123,7 +1123,7 @@ void help(char *command) printf("Usage xl [args]\n\n"); printf("xl full list of subcommands:\n\n"); for (i = 0; i < cmdtable_len; i++) - printf(" %-25s%s\n\n", + printf(" %-20s%s\n", cmd_table[i].cmd_name, cmd_table[i].cmd_desc); } else if(!strcmp(command, "create")) { printf("Usage: xl create [options] [vars]\n\n"); -- 2.39.5