diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-02-28 06:17:56 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-22 08:35:50 -0400 |
commit | 9eebaba2a843e3fa456ef2f6d244bc1bbecfd18b (patch) | |
tree | a686dde608daee029b02d87e9029ecbbb8ef7744 | |
parent | 08b1165ca4beecdc9d6f3a36e843612189bd3ad4 (diff) |
cmd: set CONFIG_SYS_HELP_CMD_WIDTH = 10
CONFIG_SYS_HELP_CMD_WIDTH is used to format the output of help without any
arguments.
CONFIG_SYS_HELP_CMD_WIDTH = 8 is too narrow to fit all our commands.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | include/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h index 2e24e8ad3ee..be74f6ac92f 100644 --- a/include/command.h +++ b/include/command.h @@ -18,7 +18,7 @@ /* Default to a width of 8 characters for help message command width */ #ifndef CONFIG_SYS_HELP_CMD_WIDTH -#define CONFIG_SYS_HELP_CMD_WIDTH 8 +#define CONFIG_SYS_HELP_CMD_WIDTH 10 #endif #ifndef __ASSEMBLY__ |