[vlc-commits] wextern: fix unused parameter warning

Rémi Denis-Courmont git at videolan.org
Thu Jul 11 21:16:26 CEST 2019


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jul 11 22:12:10 2019 +0300| [411dceabd7c85a72f47b7ad430d59b476ff2c80e] | committer: Rémi Denis-Courmont

wextern: fix unused parameter warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=411dceabd7c85a72f47b7ad430d59b476ff2c80e
---

 modules/video_output/wextern.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/video_output/wextern.c b/modules/video_output/wextern.c
index eacfd44fe0..a767f738a4 100644
--- a/modules/video_output/wextern.c
+++ b/modules/video_output/wextern.c
@@ -66,6 +66,7 @@ static int Enable(struct vout_window_t *wnd, const vout_window_cfg_t *wcfg)
         /* bypass the size handling as the window doesn't handle the size */
         sys->setResizeCb( sys->opaque, WindowResize, wnd );
 
+    (void) wcfg;
     return VLC_SUCCESS;
 }
 



More information about the vlc-commits mailing list