[MPlayer-cvslog] r18736 - trunk/mplayer.c
uau
subversion at mplayerhq.hu
Fri Jun 16 22:21:37 CEST 2006
Author: uau
Date: Fri Jun 16 22:21:37 2006
New Revision: 18736
Modified:
trunk/mplayer.c
Log:
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.
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c (original)
+++ trunk/mplayer.c Fri Jun 16 22:21:37 2006
@@ -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");
More information about the MPlayer-cvslog
mailing list