summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@amd.com>2022-08-09 16:31:12 +0200
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-08-13 11:09:49 +0200
commit046d7a0bb1b383fe14bfe950b91ce2e20f835bd4 (patch)
treeb11d7fc88bcabb8aac89bda03e30c1af40eab613 /cmd
parentee576662947330748b4cca1890d0e1d826d870f4 (diff)
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: <NULL> Cannot handle a capsule at 10000000Zynq> Signed-off-by: Michal Simek <michal.simek@amd.com> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/efidebug.c2
1 files changed, 1 insertions, 1 deletions
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;
}