mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +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:
@ -636,5 +636,5 @@ find_plan(char *ident, EPlan **eplan, int *nplans)
|
||||
newp->splan = NULL;
|
||||
(*nplans)++;
|
||||
|
||||
return (newp);
|
||||
return newp;
|
||||
}
|
||||
|
@ -517,7 +517,7 @@ findTTStatus(char *name)
|
||||
AbsoluteTime
|
||||
currabstime()
|
||||
{
|
||||
return (GetCurrentAbsoluteTime());
|
||||
return GetCurrentAbsoluteTime();
|
||||
}
|
||||
*/
|
||||
|
||||
@ -549,5 +549,5 @@ find_plan(char *ident, EPlan **eplan, int *nplans)
|
||||
newp->splan = NULL;
|
||||
(*nplans)++;
|
||||
|
||||
return (newp);
|
||||
return newp;
|
||||
}
|
||||
|
Reference in New Issue
Block a user