Commit c309bd0c authored by cehoyos's avatar cehoyos

Remove superfluous const.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19284 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ad494d2
...@@ -215,7 +215,7 @@ int opt_default(const char *opt, const char *arg){ ...@@ -215,7 +215,7 @@ int opt_default(const char *opt, const char *arg){
int opt_loglevel(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 }, { "quiet" , AV_LOG_QUIET },
{ "panic" , AV_LOG_PANIC }, { "panic" , AV_LOG_PANIC },
{ "fatal" , AV_LOG_FATAL }, { "fatal" , AV_LOG_FATAL },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment