From 88e70e1b0acbcb80d1fa6576082570122b8cf82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 6 Sep 2009 08:57:19 +0000 Subject: [PATCH] ff_rm_metadata is const. Originally committed as revision 19786 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rm.c | 2 +- libavformat/rm.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rm.c b/libavformat/rm.c index 9911aac91e..29a6e408e0 100644 --- a/libavformat/rm.c +++ b/libavformat/rm.c @@ -21,7 +21,7 @@ #include "rm.h" -const char *ff_rm_metadata[4] = { +const char * const ff_rm_metadata[4] = { "title", "author", "copyright", diff --git a/libavformat/rm.h b/libavformat/rm.h index a60004883a..68207e1fe1 100644 --- a/libavformat/rm.h +++ b/libavformat/rm.h @@ -24,7 +24,7 @@ #include "avformat.h" -extern const char *ff_rm_metadata[4]; +extern const char * const ff_rm_metadata[4]; typedef struct RMStream RMStream;