Remove superfluous const.
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Sat, 27 Jun 2009 10:26:27 +0000 (10:26 +0000)
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Sat, 27 Jun 2009 10:26:27 +0000 (10:26 +0000)
Originally committed as revision 19284 to svn://svn.ffmpeg.org/ffmpeg/trunk

cmdutils.c

index 3a84a14..e8de2f3 100644 (file)
@@ -215,7 +215,7 @@ int opt_default(const char *opt, const char *arg){
 
 int opt_loglevel(const char *opt, const char *arg)
 {
-    const struct { const char *name; int level; } const log_levels[] = {
+    const struct { const char *name; int level; } log_levels[] = {
         { "quiet"  , AV_LOG_QUIET   },
         { "panic"  , AV_LOG_PANIC   },
         { "fatal"  , AV_LOG_FATAL   },