]> git.sesse.net Git - vlc/blobdiff - modules/video_output/yuv.c
Fix printf format string (Use PRI* or zd when applicable)
[vlc] / modules / video_output / yuv.c
index 35542ebfa99295816f8851c23fe5898eb9d1f81f..19d46c7a06024593e1ed0e4d2e34eb8dd8da36a6 100644 (file)
@@ -320,7 +320,7 @@ static void WriteYUV( vout_thread_t *p_vout, video_format_t fmt,
         i_written = fwrite( p_pic->p_data, 1, i_bytes, p_sys->p_fd );
         if( i_written != i_bytes )
         {
-            msg_Warn( p_vout, "only %d of %d bytes written",
+            msg_Warn( p_vout, "only %zd of %zd bytes written",
                       i_written, i_bytes );
         }
     }