[vlc-commits] egl: syntax error
    Rémi Denis-Courmont 
    git at videolan.org
       
    Thu Jun  8 19:58:04 CEST 2017
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jun  8 20:56:37 2017 +0300| [f5ca4ff125e3284d4d47eadf38d8f7017377b641] | committer: Rémi Denis-Courmont
egl: syntax error
Comma must be between two expressions.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f5ca4ff125e3284d4d47eadf38d8f7017377b641
---
 modules/video_output/opengl/egl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/opengl/egl.c b/modules/video_output/opengl/egl.c
index 7a2bad0833..22cf3545c9 100644
--- a/modules/video_output/opengl/egl.c
+++ b/modules/video_output/opengl/egl.c
@@ -296,7 +296,7 @@ static int Open (vlc_object_t *obj, const struct gl_api *api)
                                         AWindow_Video);
     if (anw == NULL)
         goto error;
-    window = &anw,
+    window = &anw;
 # if defined (__ANDROID__) || defined (ANDROID)
     sys->display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
 # endif
    
    
More information about the vlc-commits
mailing list