From ebe44753481f784a5db0ca767b8115ae7a0c9c96 Mon Sep 17 00:00:00 2001 From: Sandboxed API Team Date: Thu, 13 Jan 2022 06:20:15 -0800 Subject: [PATCH] Fix typo in log line that displayed decimals with 0x prefix PiperOrigin-RevId: 421547286 Change-Id: Ie088bb7871629db919f34f365eb9b6ab7fe65917 --- sandboxed_api/sandbox2/comms.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxed_api/sandbox2/comms.cc b/sandboxed_api/sandbox2/comms.cc index 955ffd2..818a75c 100644 --- a/sandboxed_api/sandbox2/comms.cc +++ b/sandboxed_api/sandbox2/comms.cc @@ -357,7 +357,7 @@ bool Comms::RecvFD(int* fd) { ABSL_ANNOTATE_MEMORY_IS_INITIALIZED(&tlv, sizeof(tlv)); if (tlv.tag != kTagFd) { - SAPI_RAW_LOG(ERROR, "Expected (kTagFD: 0x%x), got: 0x%u", kTagFd, tlv.tag); + SAPI_RAW_LOG(ERROR, "Expected (kTagFD: 0x%x), got: 0x%x", kTagFd, tlv.tag); return false; }