From: Peng Fan Date: Tue, 28 Jul 2015 14:45:37 +0000 (+0800) Subject: common: command add '\n' for debug msg X-Git-Tag: v2025.01-rc5-pxa1908~12398^2~58 X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=58b6ad681a1de76a73d13b21c016e9a0466bb9eb;p=u-boot.git common: command add '\n' for debug msg Add '\n' for debug msg. Signed-off-by: Peng Fan Cc: Tom Rini Cc: Masahiro Yamada Cc: Simon Glass Acked-by: Simon Glass --- diff --git a/common/command.c b/common/command.c index 4719f4978b..381e6a20b6 100644 --- a/common/command.c +++ b/common/command.c @@ -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; }