diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-15 10:31:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-15 10:31:50 +0000 |
commit | 827f056124c57327049e30e4174a2afa9f98946f (patch) | |
tree | 5814a3e2ab790b2acbcff22fa632e50549d4beb9 /libavformat/wv.c | |
parent | 07a1b05e66a690437811cf90b3a1132627ca2126 (diff) | |
download | ffmpeg-827f056124c57327049e30e4174a2afa9f98946f.tar.gz |
Remove unused variable.
Originally committed as revision 6696 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wv.c')
-rw-r--r-- | libavformat/wv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wv.c b/libavformat/wv.c index 86b7a7bd9c..2de07fe3fc 100644 --- a/libavformat/wv.c +++ b/libavformat/wv.c @@ -162,7 +162,7 @@ static int wv_read_packet(AVFormatContext *s, AVPacket *pkt) { WVContext *wc = s->priv_data; - int ret, samples; + int ret; if (url_feof(&s->pb)) return -EIO; |