summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-07-25 01:15:18 +0200
committerRichard Braun <rbraun@sceen.net>2018-07-25 01:15:18 +0200
commit13fdce6838905e98041d4e1f2bc127bb2be58cb5 (patch)
treeaada9226175f274432531d60e60f00a665a69484 /src
parentba0f421610fc9b87964cf30fee67d1834e62b431 (diff)
shell: increase command column width in help output
Diffstat (limited to 'src')
-rw-r--r--src/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c
index 81d3c88..114d089 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -516,7 +516,7 @@ shell_cb_help(struct shell *shell, int argc, char *argv[])
shell_cmd_set_lock(cmd_set);
for (cmd = cmd_set->cmd_list; cmd != NULL; cmd = cmd->ls_next) {
- shell_printf(shell, "%13s %s\n", cmd->name, cmd->short_desc);
+ shell_printf(shell, "%19s %s\n", cmd->name, cmd->short_desc);
}
shell_cmd_set_unlock(cmd_set);