about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-07-21 22:55:39 +0100
committerJames Booth <boothj5@gmail.com>2015-07-21 22:55:39 +0100
commit59dd87d5f886d54e09ac012934aaad1bdfec2be6 (patch)
tree745a401d45c0f599c4f85b546741aa2271b49d08
parentfceec61a2c5cc323b4f7c1a8b4ffbe01b458c781 (diff)
downloadprofani-tty-59dd87d5f886d54e09ac012934aaad1bdfec2be6.tar.gz
Fix /help commands spacing
-rw-r--r--src/command/commands.c2
1 files changed, 1 insertions, 1 deletions
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);