Browse Source

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
tags/v0.5
Luca Abeni 18 years ago
parent
commit
408ed51cdb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/opt.c

+ 1
- 1
libavcodec/opt.c View File

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


Loading…
Cancel
Save