# HG changeset patch # User rathann # Date 1160342722 0 # Node ID 573f56f4f8465d8eed3eb7713bafe273837de29e # Parent d075bbfca527df4cf5d2513d3d47ec365bf59c72 Fixes: opt.c:327: warning: no return statement in function returning non-void opt_list return value is never checked. Approved by Michael. diff -r d075bbfca527 -r 573f56f4f846 opt.c --- 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;