summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2020-04-30 15:40:54 +0800
committerCommit Bot <commit-bot@chromium.org>2020-04-30 13:37:11 +0000
commit173ac74263e1979e4b05911ba8b04ddc3bd27029 (patch)
tree03f6c6ee463147b8cab3b3781ea69e82d82f862a
parente966b8b997eaecbb201339eb825be767df65b859 (diff)
downloadvboot-stabilize-13070.B.tar.gz
vboot: fix a typo in CL:2112321stabilize-13070.B
CL:2112321 inadvertently removed the escape on a \n newline in a VB2_DEBUG string. Put it back. BUG=b:124141368, chromium:968464 TEST=make clean && make runtests BRANCH=none Change-Id: I19ee4a77d3cc58d6995212151b381ae76c602a42 Signed-off-by: Joel Kitching <kitching@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/2174039 Reviewed-by: Hsuan Ting Chen <roccochen@chromium.org> Reviewed-by: Joel Kitching <kitching@chromium.org> Commit-Queue: Joel Kitching <kitching@chromium.org> Tested-by: Joel Kitching <kitching@chromium.org>
-rw-r--r--firmware/2lib/2misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/2lib/2misc.c b/firmware/2lib/2misc.c
index 86b88d90..baa50132 100644
--- a/firmware/2lib/2misc.c
+++ b/firmware/2lib/2misc.c
@@ -161,7 +161,7 @@ void vb2_check_recovery(struct vb2_context *ctx)
/* If recovery reason is non-zero, tell caller we need recovery mode */
if (sd->recovery_reason) {
ctx->flags |= VB2_CONTEXT_RECOVERY_MODE;
- VB2_DEBUG("We have a recovery request: %#x / %#xn",
+ VB2_DEBUG("We have a recovery request: %#x / %#x\n",
sd->recovery_reason,
vb2_nv_get(ctx, VB2_NV_RECOVERY_SUBCODE));
}