diff options
author | Simon Glass <sjg@chromium.org> | 2021-06-20 09:39:43 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-07-01 16:41:16 +0000 |
commit | 4dee5b1c7146f25aac7080794b594124a7e28410 (patch) | |
tree | cb248cc7e717b33bff65a0484fcfbefc1af51c3c /firmware | |
parent | ccc56f46c51fa9d0c2b3c086ace97c14fe887c32 (diff) | |
download | vboot-4dee5b1c7146f25aac7080794b594124a7e28410.tar.gz |
Fix missing newline in log_page_update()
One of the messages is missing a newline. Add it.
BUG=b:191646387
BRANCH=none
TEST=run through the flow and see that the message is correct
Signed-off-by: Simon Glass <sjg@chromium.org>
Change-Id: I5ba16f6665844b5bad6195d1e734f7aaa4ddc325
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/2975084
Reviewed-by: Chung-Sheng Wu <chungsheng@chromium.org>
Reviewed-by: Joel Kitching <kitching@chromium.org>
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/2lib/2ui_screens.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/2lib/2ui_screens.c b/firmware/2lib/2ui_screens.c index a9359b55..0d4a0693 100644 --- a/firmware/2lib/2ui_screens.c +++ b/firmware/2lib/2ui_screens.c @@ -96,7 +96,7 @@ static vb2_error_t log_page_update(struct vb2_ui_context *ui, ui->state->page_count = vb2ex_prepare_log_screen( screen->id, ui->locale_id, new_log_string); if (ui->state->page_count == 0) { - VB2_DEBUG("vb2ex_prepare_log_screen failed"); + VB2_DEBUG("vb2ex_prepare_log_screen failed\n"); return VB2_ERROR_UI_LOG_INIT; } if (ui->state->current_page >= ui->state->page_count) |