Skip to content
Snippets Groups Projects
Commit 95d99a39 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix a misleading error message." into main

parents badbb20d c9fc665e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment