]> git.sesse.net Git - vlc/blobdiff - modules/video_output/fb.c
Remove useless vout_vaControlDefault
[vlc] / modules / video_output / fb.c
index acec4c9c71969d188053ea82697d4a63e071a6f4..8aa5050dbac2a3a0fa6dc558780ba0f4a6da7a97 100644 (file)
@@ -651,11 +651,8 @@ static void End( vout_thread_t *p_vout )
  *****************************************************************************/
 static int Control( vout_thread_t *p_vout, int i_query, va_list args )
 {
-    switch( i_query )
-    {
-       default:
-            return vout_vaControlDefault( p_vout, i_query, args );
-    }
+    (void) p_vout; (void) i_query; (void) args;
+    return VLC_EGENERIC;
 }
 
 /*****************************************************************************