diff --git a/src/command/commands.c b/src/command/commands.c index 810772d5..2e377f4e 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -795,7 +795,7 @@ cmd_help(ProfWin *window, gchar **args, struct cmd_help_t help) GList *curr = ordered_commands; while (curr) { Command *cmd = curr->data; - cons_show("%-12s: %s", cmd->cmd, cmd->help.short_help); + cons_show("%-13s: %s", cmd->cmd, cmd->help.short_help); curr = g_list_next(curr); } g_list_free(ordered_commands);