mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
Fix typo in log line that displayed decimals with 0x prefix
PiperOrigin-RevId: 421547286 Change-Id: Ie088bb7871629db919f34f365eb9b6ab7fe65917
This commit is contained in:
parent
99b56fee19
commit
ebe4475348
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user