You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-29 05:57:37 +02:00
fix const warning
Originally committed as revision 4739 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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) {
|
||||
if (!strcmp(name, po->name))
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user