Commit 0697b6e3 authored by Sébastien Escudier's avatar Sébastien Escudier

fix input_Close return type

parent 9ea91967
...@@ -543,7 +543,7 @@ VLC_API int input_vaControl( input_thread_t *, int i_query, va_list ); ...@@ -543,7 +543,7 @@ VLC_API int input_vaControl( input_thread_t *, int i_query, va_list );
VLC_API int input_Control( input_thread_t *, int i_query, ... ); VLC_API int input_Control( input_thread_t *, int i_query, ... );
VLC_API int input_Close( input_thread_t * ); VLC_API void input_Close( input_thread_t * );
/** /**
* Get the input item for an input thread * Get the input item for an input thread
......
...@@ -257,7 +257,7 @@ void input_Stop( input_thread_t *p_input, bool b_abort ) ...@@ -257,7 +257,7 @@ void input_Stop( input_thread_t *p_input, bool b_abort )
* *
* It does not call input_Stop itself. * It does not call input_Stop itself.
*/ */
int input_Close( input_thread_t *p_input ) void input_Close( input_thread_t *p_input )
{ {
if( p_input->p->is_running ) if( p_input->p->is_running )
vlc_join( p_input->p->thread, NULL ); vlc_join( p_input->p->thread, NULL );
......
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