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

Fix format string

parent 7cd22823
...@@ -126,8 +126,10 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter, ...@@ -126,8 +126,10 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size ) if( p_in_buf->i_nb_bytes != p_filter->p_sys->i_frame_size )
{ {
/* Frame size changed, reset everything */ /* Frame size changed, reset everything */
msg_Warn( p_aout, "Frame size changed from %d to %d, resetting everything.", msg_Warn( p_aout, "Frame size changed from %u to %u, "
p_filter->p_sys->i_frame_size, p_in_buf->i_nb_bytes ); "resetting everything.",
p_filter->p_sys->i_frame_size,
(unsigned)p_in_buf->i_nb_bytes );
p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes; p_filter->p_sys->i_frame_size = p_in_buf->i_nb_bytes;
p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf, p_filter->p_sys->p_buf = realloc( p_filter->p_sys->p_buf,
......
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