Commit d3c394b6 authored by mru's avatar mru

fix const warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4739 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 48bd7c32
...@@ -45,7 +45,7 @@ void show_help_options(const OptionDef *options, const char *msg, int mask, int ...@@ -45,7 +45,7 @@ void show_help_options(const OptionDef *options, const char *msg, int mask, int
} }
} }
static OptionDef* find_option(const OptionDef *po, const char *name){ static const OptionDef* find_option(const OptionDef *po, const char *name){
while (po->name != NULL) { while (po->name != NULL) {
if (!strcmp(name, po->name)) if (!strcmp(name, po->name))
break; break;
......
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