Commit c7dbcf8a authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

control/media_instance.c: Fix a warning on missing parenthesis in a if statement.

parent c71c8cbc
...@@ -310,7 +310,7 @@ void libvlc_media_instance_play( libvlc_media_instance_t *p_mi, ...@@ -310,7 +310,7 @@ void libvlc_media_instance_play( libvlc_media_instance_t *p_mi,
vlc_mutex_lock( &p_mi->object_lock ); vlc_mutex_lock( &p_mi->object_lock );
if( p_input_thread = libvlc_get_input_thread( p_mi, p_e ) ) if( (p_input_thread = libvlc_get_input_thread( p_mi, p_e )) )
{ {
/* A thread alread exists, send it a play message */ /* A thread alread exists, send it a play message */
vlc_value_t val; vlc_value_t val;
......
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