Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 911a674f authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix a misleading error message." into main am: 95d99a39 am: 0c554583

parents 16ee847f 0c554583
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }