Mercurial > mplayer.hg
changeset 23911:62ee939b492d
Do not use a return value for a void function
author | reimar |
---|---|
date | Mon, 30 Jul 2007 13:46:53 +0000 |
parents | 8fcfdfcd6c41 |
children | de63d6fc46dd |
files | libmpcodecs/ad_acm.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ad_acm.c Mon Jul 30 13:06:26 2007 +0000 +++ b/libmpcodecs/ad_acm.c Mon Jul 30 13:46:53 2007 +0000 @@ -146,7 +146,8 @@ 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;