summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/shell.c b/kern/shell.c
index 81fe0132..6be17cd1 100644
--- a/kern/shell.c
+++ b/kern/shell.c
@@ -668,7 +668,7 @@ shell_cmd_help(int argc, char *argv[])
shell_cmd_acquire();
for (cmd = shell_list; cmd != NULL; cmd = cmd->ls_next) {
- printf("%13s %s\n", cmd->name, cmd->short_desc);
+ printf("%19s %s\n", cmd->name, cmd->short_desc);
}
shell_cmd_release();