cosmetics: Drop unnecessary parentheses around return values.

This commit is contained in:
Diego Biurrun
2011-12-29 22:23:16 +01:00
parent f486fb338e
commit d4b63054d9
11 changed files with 32 additions and 31 deletions

View File

@@ -148,7 +148,7 @@ static int decode_plane_subdivision(GetBitContext *gb)
static inline int scale_tile_size(int def_size, int size_factor)
{
return (size_factor == 15 ? def_size : (size_factor + 1) << 5);
return size_factor == 15 ? def_size : (size_factor + 1) << 5;
}
/**