diff options
author | Måns Rullgård <mans@mansr.com> | 2006-02-25 22:41:31 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-02-25 22:41:31 +0000 |
commit | 1bd8624697c1377bf42f5aef4795a370c3b01c1d (patch) | |
tree | 4638a040e943216479ec4a06ef1be1c31d377b92 /libavformat/asf.c | |
parent | 285b570fd23a14762ed06024b4eca0ce59b5833b (diff) | |
download | ffmpeg-1bd8624697c1377bf42f5aef4795a370c3b01c1d.tar.gz |
kill some warnings
Originally committed as revision 5063 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index b0d037089c..e22e6e3940 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -376,7 +376,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) } else if (!memcmp(&g, &ext_stream_header, sizeof(GUID))) { int ext_len, payload_ext_ct, stream_ct; uint32_t ext_d; - int64_t pos_ex_st, pos_curr; + int64_t pos_ex_st; pos_ex_st = url_ftell(pb); get_le64(pb); |