gl/egl: fix inverted typedef
authorMatthew Waters <matthew@centricular.com>
Tue, 16 Aug 2016 10:33:21 +0000 (20:33 +1000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:32:22 +0000 (19:32 +0000)
2b6841d had an inverted typedef defining ginptr and EGLAttrib.  Fix that.

gst-libs/gst/gl/egl/gstegl.h

index d227153..2a31f82 100644 (file)
@@ -48,7 +48,7 @@
 
 /* compatibility definitions... */
 #if !GST_GL_HAVE_EGLATTRIB
-typedef EGLAttrib gintptr;
+typedef gintptr EGLAttrib;
 #endif
 
 #endif /* _GST_EGL_H_ */