Browse code

Use %td instead of %PRIdPTR. The argument has type ptrdiff_t.

Originally committed as revision 26166 to svn://svn.ffmpeg.org/ffmpeg/trunk

Justin Ruggles authored on 2010/12/30 22:34:31
Showing 1 changed files
... ...
@@ -563,7 +563,7 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
563 563
         if (av_fifo_realloc2(fpc->fifo_buf,
564 564
                              (read_end - read_start) + av_fifo_size(fpc->fifo_buf)) < 0) {
565 565
             av_log(avctx, AV_LOG_ERROR,
566
-                   "couldn't reallocate buffer of size %"PRIdPTR"\n",
566
+                   "couldn't reallocate buffer of size %td\n",
567 567
                    (read_end - read_start) + av_fifo_size(fpc->fifo_buf));
568 568
             goto handle_error;
569 569
         }