From ab93c42241bf758adf4f0d9ad57f65909c055efd Mon Sep 17 00:00:00 2001 From: uau Date: Fri, 16 Jun 2006 20:21:37 +0000 Subject: [PATCH] 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. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18736 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mplayer.c b/mplayer.c index 488c4322f6..f1b9b5b06e 100644 --- a/mplayer.c +++ b/mplayer.c @@ -2339,7 +2339,7 @@ static int set_property_command(mp_cmd_t* cmd) { 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"); -- 2.11.4.GIT