Commit f9f79cbb authored by rathann's avatar rathann

Fixes:

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

opt_list return value is never checked.

Approved by Michael.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6593 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aad978fa
......@@ -260,7 +260,7 @@ int64_t av_get_int(void *obj, const char *name, AVOption **o_out){
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;
......
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