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

Commit 4828c2cc authored by Robert Shih's avatar Robert Shih Committed by android-build-merger
Browse files

Fix build

am: c5b95cd3

Change-Id: I84de0264bae191b5c3ddbb784bf9b9b120754c55
parents 5affad8f c5b95cd3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ void SoftMP3::initDecoder() {

void *SoftMP3::memsetSafe(OMX_BUFFERHEADERTYPE *outHeader, int c, size_t len) {
    if (len > outHeader->nAllocLen) {
        ALOGE("memset buffer too small: got %lu, expected %zu", outHeader->nAllocLen, len);
        ALOGE("memset buffer too small: got %lu, expected %zu", (unsigned long)outHeader->nAllocLen, len);
        android_errorWriteLog(0x534e4554, "29422022");
        notify(OMX_EventError, OMX_ErrorUndefined, OUTPUT_BUFFER_TOO_SMALL, NULL);
        mSignalledError = true;