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

* commit '0acb00c2d780b60ed3d71be256460375dd8715b4':
  fix typo that prevented proper loging of EGL error code
diff --git a/services/surfaceflinger/DisplayDevice.cpp b/services/surfaceflinger/DisplayDevice.cpp
index ff1af83..40631ee 100644
--- a/services/surfaceflinger/DisplayDevice.cpp
+++ b/services/surfaceflinger/DisplayDevice.cpp
@@ -233,7 +233,7 @@
         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);
         }
     }
 }