forked from FFmpeg/FFmpeg
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
This commit is contained in:
parent
69261768d3
commit
a10c779f76
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue