Browse Source

fix const warning

Originally committed as revision 4739 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 20 years ago
parent
commit
fccfc47533
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmdutils.c

+ 1
- 1
cmdutils.c View File

@@ -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;


Loading…
Cancel
Save