]> git.sesse.net Git - vlc/commitdiff
Correct cast of fourCC in msg_Err
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 22 Jan 2011 20:33:27 +0000 (21:33 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 22 Jan 2011 20:40:40 +0000 (21:40 +0100)
src/audio_output/filters.c

index b5ceb86b96b23a9be9c26466a2524308e9f1d31a..19508709f8fa1fe209e51e8cc1999e1a8f5ee71d 100644 (file)
@@ -189,7 +189,8 @@ int aout_FiltersCreatePipeline( aout_instance_t * p_aout,
         /* There was only one conversion to do, and we already failed. */
         msg_Err( p_aout, "couldn't find a filter for the conversion "
                 "%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;
     }