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
This commit is contained in:
uau 2006-06-16 20:21:37 +00:00
parent 8e500b6d30
commit ab93c42241
1 changed files with 1 additions and 1 deletions

View File

@ -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");