[MPlayer-cvslog] r34258 - trunk/m_option.c
    reimar 
    subversion at mplayerhq.hu
       
    Tue Oct 25 22:38:09 CEST 2011
    
    
  
Author: reimar
Date: Tue Oct 25 22:38:09 2011
New Revision: 34258
Log:
Fix parse_call_func return value.
Modified:
   trunk/m_option.c
Modified: trunk/m_option.c
==============================================================================
--- trunk/m_option.c	Tue Oct 25 22:18:35 2011	(r34257)
+++ trunk/m_option.c	Tue Oct 25 22:38:09 2011	(r34258)
@@ -717,6 +717,7 @@ const m_option_type_t m_option_type_stri
 
 static int parse_call_func(const m_option_t* opt,const char *name, const char *param, void* dst, int src) {
   ((m_opt_func_param_t) opt->p)(opt,param);
+  return 1;
 }
 
 // special variant, will not have a history/be able to
    
    
More information about the MPlayer-cvslog
mailing list