summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-08 23:53:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-08 23:55:06 +0200
commite4723a82f7088f5d4ab32ada529c3f69ba3606b0 (patch)
tree8664c8ce011cf7cee8faf64a0c6b0e3e50f206a5 /libavfilter/avfilter.c
parent33ff943f70f04035942a68c725f6cf3426df0677 (diff)
avfilter: fix 2 warnings about discarding const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
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)))