mirror of
https://github.com/postgres/postgres.git
synced 2025-08-12 15:23:02 +03:00
Remove unnecessary parentheses in return statements
The parenthesized style has only been used in a few modules. Change that to use the style that is predominant across the whole tree. Reviewed-by: Michael Paquier <michael.paquier@gmail.com> Reviewed-by: Ryan Murphy <ryanfmurphy@gmail.com>
This commit is contained in:
@@ -812,7 +812,7 @@ sub ucs2utf
|
||||
(((($ucs & 0x3ffff) >> 12) | 0x80) << 16) |
|
||||
(((($ucs & 0x0fc0) >> 6) | 0x80) << 8) | (($ucs & 0x003f) | 0x80);
|
||||
}
|
||||
return ($utf);
|
||||
return $utf;
|
||||
}
|
||||
|
||||
1;
|
||||
|
Reference in New Issue
Block a user