1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

fix input_Close return type

This commit is contained in:
Sébastien Escudier 2011-05-25 14:50:22 +02:00
parent 9ea91967ae
commit 0697b6e333
2 changed files with 2 additions and 2 deletions

View File

@ -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_Close( input_thread_t * );
VLC_API void input_Close( input_thread_t * );
/**
* Get the input item for an input thread

View File

@ -257,7 +257,7 @@ void input_Stop( input_thread_t *p_input, bool b_abort )
*
* 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 )
vlc_join( p_input->p->thread, NULL );