summaryrefslogtreecommitdiff
path: root/libs/androidfw/ZipFileRO.cpp
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-04-03 20:25:06 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2024-04-03 20:25:06 +0000
commit911a674f753128907f779bae8f407e6412ddb992 (patch)
treebddd8ba712f9c57e57a067a6662854ff7326f549 /libs/androidfw/ZipFileRO.cpp
parent16ee847f9c9f922e0124b8078387a29c179ff1fc (diff)
parent0c55458364ed3575751eabc37a4b282546396a7d (diff)
Merge "Fix a misleading error message." into main am: 95d99a3936 am: 0c55458364
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3023668 Change-Id: I64f22b3ca22f50d44944d5f973dcfab81537fc81 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/androidfw/ZipFileRO.cpp')
-rw-r--r--libs/androidfw/ZipFileRO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/androidfw/ZipFileRO.cpp b/libs/androidfw/ZipFileRO.cpp
index d7b5914130ee..9d4b426a6759 100644
--- a/libs/androidfw/ZipFileRO.cpp
+++ b/libs/androidfw/ZipFileRO.cpp
@@ -304,7 +304,7 @@ bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const
_ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry);
const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd);
if (error) {
- ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error));
+ ALOGW("ExtractToFile failed with %s", ErrorCodeString(error));
return false;
}