Commit 70a5a293 authored by Dominique Leuenberger's avatar Dominique Leuenberger Committed by Rémi Denis-Courmont

Fix for 'no-return-in-nonvoid function intf.c'

MAke sure we always return defined values.
I: Program returns random data in a function
E: vlc-beta no-return-in-nonvoid-function intf.c:341
Signed-off-by: default avatarRémi Denis-Courmont <rdenis@simphalempin.com>
parent 74b65ec9
......@@ -338,6 +338,8 @@ static int InitThread( intf_thread_t * p_intf )
p_intf->p_sys->b_key_pressed = false;
vlc_mutex_unlock( &p_intf->change_lock );
/* make sure we return a value */
return 0;
}
/*****************************************************************************
......
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