Commit bc9cdb46 authored by Jean-Philippe Andre's avatar Jean-Philippe Andre

Remove two compilation warnings (unused variables).

parent 940b39ab
...@@ -325,6 +325,7 @@ static int KeyHandler (vlc_object_t *obj, char const *varname, ...@@ -325,6 +325,7 @@ static int KeyHandler (vlc_object_t *obj, char const *varname,
{ {
access_t *access = data; access_t *access = data;
(void)varname;
(void)oldval; (void)oldval;
(void)obj; (void)obj;
......
...@@ -264,6 +264,7 @@ static int EventKey( vlc_object_t *p_this, char const *psz_var, ...@@ -264,6 +264,7 @@ static int EventKey( vlc_object_t *p_this, char const *psz_var,
access_t *p_access = p_data; access_t *p_access = p_data;
access_sys_t *p_sys = p_access->p_sys; access_sys_t *p_sys = p_access->p_sys;
(void)p_this;
(void)psz_var; (void)psz_var;
(void)oldval; (void)oldval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment