From 8dd8dc5790c994ec57f303d36bd63a0990a97776 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 4 Feb 2008 00:42:27 +0000 Subject: [PATCH] fix 8 "initialization discards qualifiers from pointer target type" warnings Originally committed as revision 11845 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/ape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ape.c b/libavformat/ape.c index 358ad2e8b2..a90f887e58 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -50,7 +50,7 @@ #define TAG(name, field) {name, offsetof(AVFormatContext, field), sizeof(((AVFormatContext *)0)->field)} static const struct { - char *name; + const char *name; int offset; int size; } tags[] = { -- 2.11.0