From b2c26e2717f8df00d56c69ef7b1b0faf7e1a93cb Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 14 Mar 2008 13:19:39 +0000 Subject: [PATCH] Use correct t printf modifier for pointer differences. Originally committed as revision 12442 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpeg12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index c16adaf60..52753576e 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2310,7 +2310,7 @@ static int mpeg_decode_frame(AVCodecContext *avctx, input_size = buf_end - buf_ptr; if(avctx->debug & FF_DEBUG_STARTCODE){ - av_log(avctx, AV_LOG_DEBUG, "%3X at %zd left %d\n", start_code, buf_ptr-buf, input_size); + av_log(avctx, AV_LOG_DEBUG, "%3X at %td left %d\n", start_code, buf_ptr-buf, input_size); } /* prepare data for next start code */ -- 2.11.0