Commit 705499c6 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compiler warning about comparing signed and unsigned

parent 3a189811
......@@ -254,7 +254,7 @@ aout_buffer_t *E_( DecodeAudio )( decoder_t *p_dec, block_t **pp_block )
return NULL;
}
if( p_dec->fmt_out.audio.i_rate != p_sys->p_context->sample_rate )
if( p_dec->fmt_out.audio.i_rate != (unsigned int)p_sys->p_context->sample_rate )
{
aout_DateInit( &p_sys->end_date, p_sys->p_context->sample_rate );
aout_DateSet( &p_sys->end_date, p_block->i_pts );
......
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