Commit 2f302ff4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

input_Read: fix return value (none of the callers check it though)

parent 5012f501
...@@ -393,7 +393,7 @@ input_thread_t *__input_CreateThreadExtended( vlc_object_t *p_parent, ...@@ -393,7 +393,7 @@ input_thread_t *__input_CreateThreadExtended( vlc_object_t *p_parent,
* \param p_parent a vlc_object * \param p_parent a vlc_object
* \param p_item an input item * \param p_item an input item
* \param b_block should we block until read is finished ? * \param b_block should we block until read is finished ?
* \return the input object id if non blocking, an error code else * \return an error code, VLC_SUCCESS on success
*/ */
int __input_Read( vlc_object_t *p_parent, input_item_t *p_item, int __input_Read( vlc_object_t *p_parent, input_item_t *p_item,
bool b_block ) bool b_block )
...@@ -420,7 +420,7 @@ int __input_Read( vlc_object_t *p_parent, input_item_t *p_item, ...@@ -420,7 +420,7 @@ int __input_Read( vlc_object_t *p_parent, input_item_t *p_item,
return VLC_EGENERIC; return VLC_EGENERIC;
} }
} }
return p_input->i_object_id; return VLC_SUCCESS;
} }
/** /**
......
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