diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-05 12:47:56 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-05 12:47:56 +0000 |
commit | 0265fe81e4e1c8f8aabb58e1d60a3c0830ea2b5d (patch) | |
tree | bf6fbaa27e1c878c4e2792b2631976a69dd9713b | |
parent | 612b5cbb24b1e076ff3efde1242d056429f39f51 (diff) | |
download | ffmpeg-0265fe81e4e1c8f8aabb58e1d60a3c0830ea2b5d.tar.gz |
remove cast
Originally committed as revision 12757 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index d8f84bfdb0..fc040fa161 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1717,7 +1717,7 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) av_log(s, AV_LOG_ERROR, "moov atom not found\n"); return -1; } - dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb)); + dprintf(mov->fc, "on_parse_exit_offset=%lld\n", url_ftell(pb)); return 0; } |