From d9e2aceb7f1c712a52672129ca7971872b030e1e Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Fri, 29 Aug 2014 00:32:32 +0200 Subject: Add missing "const" all over the place. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only "./configure --enable-gpl" on x86 was tested. Signed-off-by: Reimar Döffinger --- libavfilter/f_perms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/f_perms.c') diff --git a/libavfilter/f_perms.c b/libavfilter/f_perms.c index 2c53e8cc5b..188ce91376 100644 --- a/libavfilter/f_perms.c +++ b/libavfilter/f_perms.c @@ -72,7 +72,7 @@ static av_cold int init(AVFilterContext *ctx) } enum perm { RO, RW }; -static const char *perm_str[2] = { "RO", "RW" }; +static const char * const perm_str[2] = { "RO", "RW" }; static int filter_frame(AVFilterLink *inlink, AVFrame *frame) { -- cgit v1.2.3