Remove unnecessary parentheses from return calls.
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user