diff options
author | Kelvin Zhang <zhangkelvin@google.com> | 2020-09-16 20:06:12 +0200 |
---|---|---|
committer | Kelvin Zhang <zhangkelvin@google.com> | 2020-09-16 20:21:37 +0200 |
commit | 4f81130039f6a312eba2027b3594a2be282f6b3a (patch) | |
tree | 8a910b26d07884180bcef5f5f48781ae642cf99e /updater/updater.cpp | |
parent | Merge "Merge Android R" (diff) | |
download | android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.gz android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.bz2 android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.lz android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.xz android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.zst android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.zip |
Diffstat (limited to 'updater/updater.cpp')
-rw-r--r-- | updater/updater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp index 8f4a6ede5..73ca0e532 100644 --- a/updater/updater.cpp +++ b/updater/updater.cpp @@ -163,7 +163,7 @@ void Updater::ParseAndReportErrorCode(State* state) { bool Updater::ReadEntryToString(ZipArchiveHandle za, const std::string& entry_name, std::string* content) { - ZipEntry entry; + ZipEntry64 entry; int find_err = FindEntry(za, entry_name, &entry); if (find_err != 0) { LOG(ERROR) << "failed to find " << entry_name |