Mercurial > mplayer.hg
changeset 18733:1a0111272217
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.
author | uau |
---|---|
date | Fri, 16 Jun 2006 20:21:37 +0000 |
parents | b3fa3772a187 |
children | e702b1706df1 |
files | mplayer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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");