changeset 3961:573f56f4f846 libavcodec

Fixes: opt.c:327: warning: no return statement in function returning non-void opt_list return value is never checked. Approved by Michael.
author rathann
date Sun, 08 Oct 2006 21:25:22 +0000
parents d075bbfca527
children 2acfc35c3075
files opt.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/opt.c	Sun Oct 08 21:23:57 2006 +0000
+++ b/opt.c	Sun Oct 08 21:25:22 2006 +0000
@@ -260,7 +260,7 @@
     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;