From 0fc3c0f9dc5b24e89419b27af47a1cdf1a27b03e Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Tue, 16 Aug 2016 20:33:21 +1000 Subject: [PATCH] gl/egl: fix inverted typedef 2b6841d had an inverted typedef defining ginptr and EGLAttrib. Fix that. --- gst-libs/gst/gl/egl/gstegl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/egl/gstegl.h b/gst-libs/gst/gl/egl/gstegl.h index d227153cd7..2a31f82dab 100644 --- a/gst-libs/gst/gl/egl/gstegl.h +++ b/gst-libs/gst/gl/egl/gstegl.h @@ -48,7 +48,7 @@ /* compatibility definitions... */ #if !GST_GL_HAVE_EGLATTRIB -typedef EGLAttrib gintptr; +typedef gintptr EGLAttrib; #endif #endif /* _GST_EGL_H_ */