[FFmpeg-cvslog] asfdec: Fix printf format string length modifier

Diego Biurrun git at videolan.org
Tue Jan 8 12:38:54 CET 2013


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Mon Dec 31 11:26:17 2012 +0100| [e817d9139ff6d761fbee2c990ff0b72789d3c17c] | committer: Diego Biurrun

asfdec: Fix printf format string length modifier

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e817d9139ff6d761fbee2c990ff0b72789d3c17c
---

 libavformat/asfdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index c6b322d..ca6c73b 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -749,7 +749,7 @@ static int asf_read_header(AVFormatContext *s)
             }
         }
         if(avio_tell(pb) != gpos + gsize)
-            av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRIu64"\n", avio_tell(pb)-gpos, gsize);
+            av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRId64"\n", avio_tell(pb)-gpos, gsize);
         avio_seek(pb, gpos + gsize, SEEK_SET);
     }
     ff_get_guid(pb, &g);



More information about the ffmpeg-cvslog mailing list