Commit 37acd67e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unitialized variable

parent ecdec76a
...@@ -936,7 +936,7 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var, ...@@ -936,7 +936,7 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
void *p_data ) void *p_data )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_data; intf_thread_t *p_intf = (intf_thread_t *)p_data;
int i_action; int i_action = 0;
(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