diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:37:04 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:37:04 +0000 |
commit | c6b0aa6802a78d6d296a35287e2f07408f5249e2 (patch) | |
tree | f92b6d8a64ec6d07c4fcf443c4eaf5564efcf7bd /libavfilter/avfilter.c | |
parent | 97fb0c2cb3797d980f4692e963dfe2e874c4de3a (diff) | |
download | ffmpeg-c6b0aa6802a78d6d296a35287e2f07408f5249e2.tar.gz |
Fix warnings
Commited in SoC by Bobby Bingham on 2007-07-30 18:56:40
Originally committed as revision 11994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index b055547fcb..7cc767e305 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -364,7 +364,7 @@ AVFilterContext *avfilter_create_by_name(char *name, char *inst_name) int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque) { - int ret, i; + int ret; if(filter->filter->init) if((ret = filter->filter->init(filter, args, opaque))) return ret; |