Commit 6da58d2a authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

audio_output: Fix an unused parameter in the NDEBUG case.

parent a8945cda
...@@ -58,6 +58,9 @@ static inline void aout_assert_fifo_locked( aout_instance_t * p_aout, aout_fifo_ ...@@ -58,6 +58,9 @@ static inline void aout_assert_fifo_locked( aout_instance_t * p_aout, aout_fifo_
if( i == p_aout->i_nb_inputs ) if( i == p_aout->i_nb_inputs )
vlc_assert_locked( &p_aout->mixer_lock ); vlc_assert_locked( &p_aout->mixer_lock );
} }
#else
(void)p_aout;
(void)p_fifo;
#endif #endif
} }
......
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