# HG changeset patch # User uau # Date 1150489297 0 # Node ID 1a0111272217b533510417ca8dc8696a4562add8 # Parent b3fa3772a18710b1bbcb6c557b59eb53de271dbb Fix definition of reinit_audio_chain(). It had return type "int" even though it did not return a value (callers do not expect one) and used old-style syntax. Changed return type to "void" and added "void" as parameter list. diff -r b3fa3772a187 -r 1a0111272217 mplayer.c --- a/mplayer.c Fri Jun 16 19:06:00 2006 +0000 +++ b/mplayer.c Fri Jun 16 20:21:37 2006 +0000 @@ -2339,7 +2339,7 @@ return 1; } -static int reinit_audio_chain() { +static void reinit_audio_chain(void) { if(sh_audio){ current_module="init_audio_codec"; mp_msg(MSGT_CPLAYER,MSGL_INFO,"==========================================================================\n");