diff options
| author | 2024-04-03 19:59:54 +0000 | |
|---|---|---|
| committer | 2024-04-03 19:59:54 +0000 | |
| commit | 0c55458364ed3575751eabc37a4b282546396a7d (patch) | |
| tree | 4a24c12da61ac7812c29b675c4402cff7bfbc26b /libs/androidfw/ZipFileRO.cpp | |
| parent | 41a5c0df9ca9b7c0335fcac5b2104e5c0262e07d (diff) | |
| parent | 95d99a3936cebeb5c68a00d0ec3dce4e453f1e5e (diff) | |
Merge "Fix a misleading error message." into main am: 95d99a3936
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3023668
Change-Id: Ia316b0993cc6a672d2683b5b6fb8cd2223cf41fd
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.cpp | 2 |
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; } |