diff options
author | Simon Glass <sjg@chromium.org> | 2023-01-17 10:47:17 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-23 18:11:39 -0500 |
commit | f229a8ee7e9c1b050b292cc33eea3c25c0723ba7 (patch) | |
tree | 9dad79907a531c8c2418567d3db72cdc5f60df6e /test/cmd_ut.c | |
parent | cb698b0a3e80eb75941414a1cac75a7c87ab9982 (diff) | |
download | u-boot-f229a8ee7e9c1b050b292cc33eea3c25c0723ba7.tar.gz u-boot-f229a8ee7e9c1b050b292cc33eea3c25c0723ba7.tar.bz2 u-boot-f229a8ee7e9c1b050b292cc33eea3c25c0723ba7.zip |
test: Fix the help for the ut command
The font help has an incorrect newline. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: cdd964e3801 ("test: Tidy up help for ut command")
Diffstat (limited to 'test/cmd_ut.c')
-rw-r--r-- | test/cmd_ut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd_ut.c b/test/cmd_ut.c index 067bd0828a..1713d0d1c8 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -189,7 +189,7 @@ static char ut_help_text[] = "\nfdt - fdt command" #endif #ifdef CONFIG_CONSOLE_TRUETYPE - "\nut font - font command\n" + "\nut font - font command" #endif #ifdef CONFIG_CMD_LOADM "\nloadm - loadm command parameters and loading memory blob" |