diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-31 11:26:17 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-01-07 09:21:42 +0100 |
commit | e817d9139ff6d761fbee2c990ff0b72789d3c17c (patch) | |
tree | 3dce0c16e010f924d5b62d720e9664b548116526 /libavformat/asfdec.c | |
parent | d894f74762bc95310ba23f804b7ba8dffc8f6646 (diff) | |
download | ffmpeg-e817d9139ff6d761fbee2c990ff0b72789d3c17c.tar.gz |
asfdec: Fix printf format string length modifier
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index c6b322d6d3..ca6c73b914 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); |