From: Keir Fraser Date: Tue, 4 May 2010 11:19:50 +0000 (+0100) Subject: xl: Make xl usage summary legible X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12279 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9fdb81c40a3ef376a036fd7e9990baf37e5f267e;p=xen.git 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 --- 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");