diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 23:53:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 23:55:06 +0200 |
commit | e4723a82f7088f5d4ab32ada529c3f69ba3606b0 (patch) | |
tree | 8664c8ce011cf7cee8faf64a0c6b0e3e50f206a5 | |
parent | 33ff943f70f04035942a68c725f6cf3426df0677 (diff) | |
download | ffmpeg-e4723a82f7088f5d4ab32ada529c3f69ba3606b0.tar.gz |
avfilter: fix 2 warnings about discarding const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 2dffccab89..3f94dded2d 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -510,7 +510,7 @@ static void *filter_child_next(void *obj, void *prev) static const AVClass *filter_child_class_next(const AVClass *prev) { - AVFilter *f = NULL; + const AVFilter *f = NULL; /* find the filter that corresponds to prev */ while (prev && (f = avfilter_next(f))) |