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

Commit 43bd832d authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

am 0acb00c2: Merge "fix typo that prevented proper loging of EGL error code" into jb-mr1-dev

* commit '0acb00c2':
  fix typo that prevented proper loging of EGL error code
parents 70f07572 0acb00c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -233,7 +233,7 @@ void DisplayDevice::swapBuffers(HWComposer& hwc) const {
        if (error == EGL_CONTEXT_LOST ||
                mType == DisplayDevice::DISPLAY_PRIMARY) {
            LOG_ALWAYS_FATAL("eglSwapBuffers(%p, %p) failed with 0x%08x",
                    mDisplay, mSurface, eglGetError());
                    mDisplay, mSurface, error);
        }
    }
}