Fix a Fuchsia formatter type mismatch flagged by the pending Clang roll (flutter/engine#43651)

This commit is contained in:
Jason Simmons 2023-07-13 13:13:55 -07:00 committed by GitHub
parent 036fbf256d
commit 4f384979af

View File

@ -69,7 +69,8 @@ bool VmoFromFilename(const std::string& filename,
fdio_open_fd(filename.c_str(), static_cast<uint32_t>(flags), &fd);
if (status != ZX_OK) {
FX_LOGF(ERROR, LOG_TAG, "fdio_open_fd(\"%s\", %08x) failed: %s",
filename.c_str(), flags, zx_status_get_string(status));
filename.c_str(), static_cast<uint32_t>(flags),
zx_status_get_string(status));
return false;
}
bool result = VmoFromFd(fd, executable, buffer);
@ -91,7 +92,8 @@ bool VmoFromFilenameAt(int dirfd,
static_cast<uint32_t>(flags), &fd);
if (status != ZX_OK) {
FX_LOGF(ERROR, LOG_TAG, "fdio_open_fd_at(%d, \"%s\", %08x) failed: %s",
dirfd, filename.c_str(), flags, zx_status_get_string(status));
dirfd, filename.c_str(), static_cast<uint32_t>(flags),
zx_status_get_string(status));
return false;
}
bool result = VmoFromFd(fd, executable, buffer);