From 827f056124c57327049e30e4174a2afa9f98946f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 15 Oct 2006 10:31:50 +0000 Subject: [PATCH] Remove unused variable. Originally committed as revision 6696 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/wv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;