From: Michal Simek Date: Tue, 9 Aug 2022 14:31:12 +0000 (+0200) Subject: cmd: efidebug: Add missing \n at the end of message X-Git-Tag: baikal/mips/sdk5.8.2~5^2~250^2 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=ca67e8ffde4b11d6f59113fbac46acdc52d6a502;p=uboot.git cmd: efidebug: Add missing \n at the end of message Currently message is not intended that prompt end up at the end of debug line. For example like this: DFU alt info setting: done DFU entities configuration failed! (partition table does not match dfu_alt_info?) Firmware update failed: Cannot handle a capsule at 10000000Zynq> Signed-off-by: Michal Simek Reviewed-by: Heinrich Schuchardt Reviewed-by: Ilias Apalodimas --- diff --git a/cmd/efidebug.c b/cmd/efidebug.c index df928ce71d..84e6ff5565 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -77,7 +77,7 @@ static int do_efi_capsule_update(struct cmd_tbl *cmdtp, int flag, ret = EFI_CALL(RT->update_capsule(&capsule, 1, 0)); if (ret) { - printf("Cannot handle a capsule at %p", capsule); + printf("Cannot handle a capsule at %p\n", capsule); return CMD_RET_FAILURE; }