From 592b91fb498fc3b07b683bffa62beccfc525c516 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 22 Jul 2009 18:18:41 +0000 Subject: [PATCH] 2009-07-22 Joel Sherrill * libmisc/shell/main_help.c: Provide a few more characters for command names. --- cpukit/ChangeLog | 5 +++++ cpukit/libmisc/shell/main_help.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 7f531d8516..2136dd4b39 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2009-07-22 Joel Sherrill + + * libmisc/shell/main_help.c: Provide a few more characters for command + names. + 2009-07-22 Joel Sherrill * libmisc/shell/main_mdump.c, libmisc/shell/main_mwdump.c: Fine tune diff --git a/cpukit/libmisc/shell/main_help.c b/cpukit/libmisc/shell/main_help.c index 5aa9dc759e..512eb60bbc 100644 --- a/cpukit/libmisc/shell/main_help.c +++ b/cpukit/libmisc/shell/main_help.c @@ -34,8 +34,8 @@ int rtems_shell_help_cmd( const char * pc; int col,line; - printf("%-10.10s - ",shell_cmd->name); - col = 12; + printf("%-12.12s - ",shell_cmd->name); + col = 14; line = 1; if (shell_cmd->alias) { printf("is an for command '%s'",shell_cmd->alias->name);