[vlc-commits] commit: Fix warning ( Rémi Denis-Courmont )

git at videolan.org git at videolan.org
Sun Mar 28 23:56:02 CEST 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 29 00:52:48 2010 +0300| [4f627eaa2f0ff0658fbeba109fbdc8b2aa3d5d7d] | committer: Rémi Denis-Courmont 

Fix warning

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

 src/video_output/vout_intf.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index 16b635d..02ff0b0 100644
--- a/src/video_output/vout_intf.c
+++ b/src/video_output/vout_intf.c
@@ -696,6 +696,8 @@ static void InitWindowSize( vout_thread_t *p_vout, unsigned *pi_width,
 static int ZoomCallback( vlc_object_t *p_this, char const *psz_cmd,
                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
 {
+    (void)psz_cmd; (void)oldval; (void)p_data;
+
     return var_SetFloat( p_this, "scale", newval.f_float );
 }
 



More information about the vlc-commits mailing list