Commit 46c62acc authored by Jean-Paul Saman's avatar Jean-Paul Saman

Remove excess whitespace

parent 499b9cfb
...@@ -295,14 +295,14 @@ void __osd_MenuActivate( vlc_object_t *p_this ) ...@@ -295,14 +295,14 @@ void __osd_MenuActivate( vlc_object_t *p_this )
/* /*
* Is there a menu item above or below? If so, then select it. * Is there a menu item above or below? If so, then select it.
*/ */
if( p_button && p_button->p_up) if( p_button && p_button->p_up )
{ {
vlc_object_release( (vlc_object_t*) p_osd ); vlc_object_release( (vlc_object_t*) p_osd );
vlc_mutex_unlock( lockval.p_address ); vlc_mutex_unlock( lockval.p_address );
__osd_MenuUp( p_this ); /* "menu select" means go to menu item above. */ __osd_MenuUp( p_this ); /* "menu select" means go to menu item above. */
return; return;
} }
if( p_button && p_button->p_down) if( p_button && p_button->p_down )
{ {
vlc_object_release( (vlc_object_t*) p_osd ); vlc_object_release( (vlc_object_t*) p_osd );
vlc_mutex_unlock( lockval.p_address ); vlc_mutex_unlock( lockval.p_address );
......
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