mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-21 23:10:13 +00:00
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
@ -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…
Reference in New Issue
Block a user