diff options
author | Richard Braun <rbraun@sceen.net> | 2017-07-01 19:07:37 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-07-01 19:07:37 +0200 |
commit | c9805ef97023bf6de973c672a68bf8cf007b4ce2 (patch) | |
tree | c880fb5ddb8555069ac3f25c3d66d0d0602149ee /kern/shell.c | |
parent | f2f7b5b6f9a193351ae99bbce698a1a51025290b (diff) |
kern/shell: improve help output format
Diffstat (limited to 'kern/shell.c')
-rw-r--r-- | kern/shell.c | 2 |
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(); |