Mercurial > mplayer.hg
diff stream/stream_cue.c @ 26756:c43ce7268677
cosmetics: Remove useless parentheses from return statements.
author | diego |
---|---|
date | Fri, 16 May 2008 08:43:15 +0000 |
parents | 1977ed7f06d4 |
children | 0f1b5b68af32 |
line wrap: on
line diff
--- a/stream/stream_cue.c Fri May 16 08:33:27 2008 +0000 +++ b/stream/stream_cue.c Fri May 16 08:43:15 2008 +0000 @@ -120,7 +120,7 @@ if(strncmp(&Line[11], "MODE2/2352", 10)==0) track->mode = MODE2_2352; if(strncmp(&Line[11], "MODE2/2336", 10)==0) track->mode = MODE2_2336; } - else return(1); + else return 1; /* Get the track indexes */ while(1) { @@ -150,7 +150,7 @@ else mp_msg (MSGT_OPEN,MSGL_INFO, MSGTR_MPDEMUX_CUEREAD_UnexpectedCuefileLine, Line); } - return(0); + return 0; }