Merge "fastboot driver: ftrucate64->ftruncate."

This commit is contained in:
Treehugger Robot 2021-03-24 08:34:51 +00:00 committed by Gerrit Code Review
commit 47229793e5
2 changed files with 2 additions and 1 deletions

View File

@ -208,6 +208,7 @@ cc_defaults {
"-Werror",
"-Wunreachable-code",
"-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION",
"-D_FILE_OFFSET_BITS=64"
],
target: {

View File

@ -184,7 +184,7 @@ class DataUpdater {
if (!android::base::WriteStringToFd(data, fd)) {
return ErrnoErrorf("Cannot write new content to {}", what);
}
if (TEMP_FAILURE_RETRY(ftruncate64(fd.get(), data.size())) == -1) {
if (TEMP_FAILURE_RETRY(ftruncate(fd.get(), data.size())) == -1) {
return ErrnoErrorf("Truncating new vendor boot image to 0x{:x} fails", data.size());
}
return {};