From b8fc00bfb41a61aeda186eec8f14522ff32f23f8 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 9 Oct 2012 16:43:50 -0700 Subject: [PATCH] fix typo that prevented proper loging of EGL error code needed for investigating 7309949 Bug: 7309949 Change-Id: If29a5c08d0e87f46b44ba2e1030be61cb4d1403b --- services/surfaceflinger/DisplayDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/surfaceflinger/DisplayDevice.cpp b/services/surfaceflinger/DisplayDevice.cpp index ff1af8355..40631ee35 100644 --- a/services/surfaceflinger/DisplayDevice.cpp +++ b/services/surfaceflinger/DisplayDevice.cpp @@ -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); } } }