mirror of https://git.ffmpeg.org/ffmpeg.git
Fix
opt.c: In function ‘av_set_string’: opt.c:164: warning: passing argument 9 of ‘ff_eval2’ from incompatible pointer type Originally committed as revision 11937 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0d6fd5ec13
commit
408ed51cdb
|
@ -151,7 +151,7 @@ const AVOption *av_set_string(void *obj, const char *name, const char *val){
|
||||||
char buf[256];
|
char buf[256];
|
||||||
int cmd=0;
|
int cmd=0;
|
||||||
double d;
|
double d;
|
||||||
char *error = NULL;
|
const char *error = NULL;
|
||||||
|
|
||||||
if(*val == '+' || *val == '-')
|
if(*val == '+' || *val == '-')
|
||||||
cmd= *(val++);
|
cmd= *(val++);
|
||||||
|
|
Loading…
Reference in New Issue