Use %"PRIdPTR" instead of %d to silence gcc warning about type mismatch.

Originally committed as revision 26164 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2010-12-30 04:09:44 +00:00
parent 4b5d4720c1
commit 281bf84fbd
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
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 %d\n",
"couldn't reallocate buffer of size %"PRIdPTR"\n",
(read_end - read_start) + av_fifo_size(fpc->fifo_buf));
goto handle_error;
}