gl/egl: fix inverted typedef
authorMatthew Waters <matthew@centricular.com>
Tue, 16 Aug 2016 10:33:21 +0000 (20:33 +1000)
committerMatthew Waters <matthew@centricular.com>
Tue, 16 Aug 2016 10:34:37 +0000 (20:34 +1000)
2b6841d had an inverted typedef defining ginptr and EGLAttrib.  Fix that.

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

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