diff libmpcodecs/ad_libdv.c @ 36661:1b0d31ceb2ec

Fix some format string mismatches.
author reimar
date Sun, 26 Jan 2014 18:59:16 +0000
parents b2829d4f2de4
children
line wrap: on
line diff
--- a/libmpcodecs/ad_libdv.c	Sun Jan 26 18:59:15 2014 +0000
+++ b/libmpcodecs/ad_libdv.c	Sun Jan 26 18:59:16 2014 +0000
@@ -103,7 +103,7 @@
 
    if(xx!=decoder->frame_size)
        mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_MPCODECS_AudioFramesizeDiffers,
-           xx, decoder->frame_size);
+           xx, (int)decoder->frame_size);
 
    if (dv_decode_full_audio(decoder, dv_audio_frame,(int16_t**) audioBuffers))
    {