Commit e3678da7 authored by diego's avatar diego

Use correct t printf modifier for pointer differences.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12442 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72329f39
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment