From 19f32c0f49544bd30be837e63469bc66e94b6e87 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 d227153..2a31f82 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_ */ -- 2.7.4