Commit 25d32d8a authored by lucabe's avatar lucabe

Fix

opt.c: In function ‘av_set_string’:
opt.c:164: warning: passing argument 9 of ‘ff_eval2’ from incompatible pointer type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11937 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 92116fb0
......@@ -151,7 +151,7 @@ const AVOption *av_set_string(void *obj, const char *name, const char *val){
char buf[256];
int cmd=0;
double d;
char *error = NULL;
const char *error = NULL;
if(*val == '+' || *val == '-')
cmd= *(val++);
......
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