Commit 44522f52 authored by Laurent Aimar's avatar Laurent Aimar

Fixed missing type for b_was_paused.

Isn't there a gcc flag to avoid compiling that ?
 const a = value.
parent acab6ea0
......@@ -339,7 +339,7 @@ void input_DecoderDelete( decoder_t *p_dec )
/* Make sure we aren't paused/buffering/waiting anymore */
vlc_mutex_lock( &p_owner->lock );
const b_was_paused = p_owner->b_paused;
const bool b_was_paused = p_owner->b_paused;
p_owner->b_paused = false;
p_owner->b_buffering = false;
p_owner->b_flushing = true;
......
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