[vlc-commits] mkv: remove unused variable callback parameters

Rémi Denis-Courmont git at videolan.org
Mon Jul 25 22:18:25 CEST 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Jul 25 23:18:09 2016 +0300| [5884f47c6a5cd65e2ff9aa2a39349c6a4b1e3b9d] | committer: Rémi Denis-Courmont

mkv: remove unused variable callback parameters

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

 modules/demux/mkv/demux.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/demux/mkv/demux.cpp b/modules/demux/mkv/demux.cpp
index 8e6db9e..481aa0d 100644
--- a/modules/demux/mkv/demux.cpp
+++ b/modules/demux/mkv/demux.cpp
@@ -87,9 +87,8 @@ void event_thread_t::ResetPci()
     is_running = false;
 }
 int event_thread_t::EventMouse( vlc_object_t *p_this, char const *psz_var,
-                                vlc_value_t oldval, vlc_value_t newval, void *p_data )
+                                vlc_value_t, vlc_value_t, void *p_data )
 {
-    VLC_UNUSED( oldval ); VLC_UNUSED( newval );
     event_thread_t *p_ev = (event_thread_t *) p_data;
     vlc_mutex_lock( &p_ev->lock );
     if( psz_var[6] == 'c' )



More information about the vlc-commits mailing list