diff options
| author | Michal Simek <[email protected]> | 2022-08-09 16:31:12 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2022-08-13 11:09:49 +0200 |
| commit | 046d7a0bb1b383fe14bfe950b91ce2e20f835bd4 (patch) | |
| tree | b11d7fc88bcabb8aac89bda03e30c1af40eab613 /cmd/efidebug.c | |
| parent | ee576662947330748b4cca1890d0e1d826d870f4 (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 <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'cmd/efidebug.c')
| -rw-r--r-- | cmd/efidebug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index df928ce71dc..84e6ff55650 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; } |
