Commit eecec236 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Correct cast of fourCC in msg_Err

parent 83123583
...@@ -189,7 +189,8 @@ int aout_FiltersCreatePipeline( aout_instance_t * p_aout, ...@@ -189,7 +189,8 @@ int aout_FiltersCreatePipeline( aout_instance_t * p_aout,
/* There was only one conversion to do, and we already failed. */ /* There was only one conversion to do, and we already failed. */
msg_Err( p_aout, "couldn't find a filter for the conversion " msg_Err( p_aout, "couldn't find a filter for the conversion "
"%4.4s -> %4.4s", "%4.4s -> %4.4s",
&p_input_format->i_format, &p_output_format->i_format ); (const char *)&p_input_format->i_format,
(const char *)&p_output_format->i_format );
return -1; return -1;
} }
......
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