[FFmpeg-cvslog] r26166 - trunk/libavcodec/flac_parser.c
jbr
subversion
Thu Dec 30 14:34:31 CET 2010
Author: jbr
Date: Thu Dec 30 14:34:31 2010
New Revision: 26166
Log:
Use %td instead of %PRIdPTR. The argument has type ptrdiff_t.
Modified:
trunk/libavcodec/flac_parser.c
Modified: trunk/libavcodec/flac_parser.c
==============================================================================
--- trunk/libavcodec/flac_parser.c Thu Dec 30 05:22:41 2010 (r26165)
+++ trunk/libavcodec/flac_parser.c Thu Dec 30 14:34:31 2010 (r26166)
@@ -563,7 +563,7 @@ static int flac_parse(AVCodecParserConte
if (av_fifo_realloc2(fpc->fifo_buf,
(read_end - read_start) + av_fifo_size(fpc->fifo_buf)) < 0) {
av_log(avctx, AV_LOG_ERROR,
- "couldn't reallocate buffer of size %"PRIdPTR"\n",
+ "couldn't reallocate buffer of size %td\n",
(read_end - read_start) + av_fifo_size(fpc->fifo_buf));
goto handle_error;
}
More information about the ffmpeg-cvslog
mailing list