diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-08 12:34:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-08 12:34:14 +0100 |
commit | 3bca69c2a8e70a199d806767624672c4858d091f (patch) | |
tree | 360c73ec4151a02bc88489cc0988ebaf54996e67 /libavformat/asfdec.c | |
parent | 1a088f61e1b8d620c313c47d861a1a4b29fd7156 (diff) | |
parent | 9a00374cb4512a58a1fee366b850dfa87c76e1f3 (diff) | |
download | ffmpeg-3bca69c2a8e70a199d806767624672c4858d091f.tar.gz |
Merge commit '9a00374cb4512a58a1fee366b850dfa87c76e1f3'
* commit '9a00374cb4512a58a1fee366b850dfa87c76e1f3':
doc: Fix a few typos in the developer documentation
xwma: Remove unused variable
asfdec: Fix printf format string length modifier
Conflicts:
doc/developer.texi
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 2dcdf56adb..5c2cf8b9b0 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -765,7 +765,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); |