[FFmpeg-cvslog] lavc/intrax8: Use correct printf specifier for size_t on Windows.

Carl Eugen Hoyos git at videolan.org
Fri Jul 22 20:23:59 EEST 2016


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Jul 22 19:23:01 2016 +0200| [db8e8c97311ab2fe65cd54acee8731f8b126302b] | committer: Carl Eugen Hoyos

lavc/intrax8: Use correct printf specifier for size_t on Windows.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db8e8c97311ab2fe65cd54acee8731f8b126302b
---

 libavcodec/intrax8.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 1e881fc..5e1233b 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -116,7 +116,7 @@ static av_cold int x8_vlc_init(void)
 #undef init_or_vlc
 
     if (offset != sizeof(table) / sizeof(VLC_TYPE) / 2) {
-        av_log(NULL, AV_LOG_ERROR, "table size %zd does not match needed %i\n",
+        av_log(NULL, AV_LOG_ERROR, "table size %"SIZE_SPECIFIER" does not match needed %i\n",
                sizeof(table) / sizeof(VLC_TYPE) / 2, offset);
         return AVERROR_INVALIDDATA;
     }



More information about the ffmpeg-cvslog mailing list