1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-19 09:57:34 +00:00

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

View File

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