Remove unnecessary parentheses from return calls.

Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2008-05-06 09:16:36 +00:00
parent 91605c69fb
commit ccd425e799
22 changed files with 33 additions and 33 deletions

View File

@@ -112,7 +112,7 @@ static int getBitrateMode(int bitrate)
{
if(rates[i].rate==bitrate)
{
return(rates[i].mode);
return rates[i].mode;
}
}
/* no bitrate matching, return an error */
@@ -559,7 +559,7 @@ static int getWBBitrateMode(int bitrate)
{
if(rates[i].rate==bitrate)
{
return(rates[i].mode);
return rates[i].mode;
}
}
/* no bitrate matching, return an error */