mirror of
https://github.com/mpv-player/mpv
synced 2025-03-20 02:09:52 +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:
parent
701cf0fa79
commit
f100b100aa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user