diff options
author | Peter Eisentraut | 2017-08-17 16:39:20 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-09-05 18:52:55 +0000 |
commit | 17273d059cd3a5cba818505b0d47a444c36a3513 (patch) | |
tree | 812c47b95d279e50e5d797852edd6664f217a0c8 /contrib/spi/refint.c | |
parent | ba26f5cf768a31e0cbdf5eb8675ee187ad35fd0b (diff) |
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>
Diffstat (limited to 'contrib/spi/refint.c')
-rw-r--r-- | contrib/spi/refint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index 46205c76136..70def95ac5e 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -636,5 +636,5 @@ find_plan(char *ident, EPlan **eplan, int *nplans) newp->splan = NULL; (*nplans)++; - return (newp); + return newp; } |