Browse Source

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
tags/v0.5
Dominik Mierzejewski 19 years ago
parent
commit
a10c779f76
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/opt.c

+ 1
- 1
libavcodec/opt.c View File

@@ -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…
Cancel
Save