Shortened /sub "request" parameter to "req", and formatted help

This commit is contained in:
James Booth
2012-11-11 19:32:42 +00:00
parent a5983cacb0
commit 07d624c513
2 changed files with 12 additions and 12 deletions

View File

@@ -926,7 +926,7 @@ _cons_show_basic_help(void)
GSList *basic_helpers = cmd_get_basic_help();
while (basic_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)basic_helpers->data;
cons_show("%-25s: %s", help->usage, help->short_help);
cons_show("%-30s: %s", help->usage, help->short_help);
basic_helpers = g_slist_next(basic_helpers);
}