diff options
author | Matthew Waters <matthew@centricular.com> | 2016-08-16 20:33:21 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2016-08-16 20:34:37 +1000 |
commit | 0fc3c0f9dc5b24e89419b27af47a1cdf1a27b03e (patch) | |
tree | 292621ef8f05164ffa9dd9fbfdec7b031dae77b6 | |
parent | 04199db2aeea966c2c879b1764427c87433570f1 (diff) |
gl/egl: fix inverted typedef
2b6841d had an inverted typedef defining ginptr and EGLAttrib. Fix that.
-rw-r--r-- | gst-libs/gst/gl/egl/gstegl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/egl/gstegl.h b/gst-libs/gst/gl/egl/gstegl.h index d227153cd..2a31f82da 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_ */ |