Do not use a return value for a void function

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23931 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-30 13:46:53 +00:00
parent 701cf0fa79
commit f100b100aa
1 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,8 @@ static void uninit(sh_audio_t *sh)
case ACMERR_CANCELED: case ACMERR_CANCELED:
mp_msg(MSGT_WIN32, MSGL_DBG2, "ACM_Decoder: stream busy, waiting..\n"); mp_msg(MSGT_WIN32, MSGL_DBG2, "ACM_Decoder: stream busy, waiting..\n");
usec_sleep(100000000); usec_sleep(100000000);
return(uninit(sh)); uninit(sh);
return;
case ACMERR_UNPREPARED: case ACMERR_UNPREPARED:
case ACMERR_NOTPOSSIBLE: case ACMERR_NOTPOSSIBLE:
return; return;