Commit a10c779f authored by Dominik Mierzejewski's avatar Dominik Mierzejewski

Fixes:

opt.c:327: warning: no return statement in function returning non-void

opt_list return value is never checked.

Approved by Michael.

Originally committed as revision 6593 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 69261768
...@@ -260,7 +260,7 @@ int64_t av_get_int(void *obj, const char *name, AVOption **o_out){ ...@@ -260,7 +260,7 @@ int64_t av_get_int(void *obj, const char *name, AVOption **o_out){
return num*intnum/den; return num*intnum/den;
} }
static int opt_list(void *obj, void *av_log_obj, char *unit) static void opt_list(void *obj, void *av_log_obj, char *unit)
{ {
AVOption *opt=NULL; AVOption *opt=NULL;
......
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