mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
common: command add '\n' for debug msg
Add '\n' for debug msg. Signed-off-by: Peng Fan <Peng.Fan@freescale.com> Cc: Tom Rini <trini@konsulko.com> Cc: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3bd926cc7e
commit
58b6ad681a
1 changed files with 1 additions and 1 deletions
|
@ -492,7 +492,7 @@ static int cmd_call(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
|
||||
result = (cmdtp->cmd)(cmdtp, flag, argc, argv);
|
||||
if (result)
|
||||
debug("Command failed, result=%d", result);
|
||||
debug("Command failed, result=%d\n", result);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue