diff --git a/fastboot/vendor_boot_img_utils_test.cpp b/fastboot/vendor_boot_img_utils_test.cpp index 1563b89c7..467c6e9d9 100644 --- a/fastboot/vendor_boot_img_utils_test.cpp +++ b/fastboot/vendor_boot_img_utils_test.cpp @@ -73,8 +73,8 @@ Result FileSize(borrowed_fd fd, std::filesystem::path path) { // Seek to beginning then read the whole file. Result ReadStartOfFdToString(borrowed_fd fd, std::filesystem::path path) { - if (lseek64(fd.get(), 0, SEEK_SET) != 0) - return ErrnoError() << "lseek64(" << path << ", 0, SEEK_SET)"; + if (lseek(fd.get(), 0, SEEK_SET) != 0) + return ErrnoError() << "lseek(" << path << ", 0, SEEK_SET)"; std::string content; if (!android::base::ReadFdToString(fd, &content)) return ErrnoError() << "read(" << path << ")"; return content;