summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);