diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-08-17 12:39:20 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-09-05 14:52:55 -0400 |
commit | 17273d059cd3a5cba818505b0d47a444c36a3513 (patch) | |
tree | 812c47b95d279e50e5d797852edd6664f217a0c8 /src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c | |
parent | ba26f5cf768a31e0cbdf5eb8675ee187ad35fd0b (diff) | |
download | postgresql-17273d059cd3a5cba818505b0d47a444c36a3513.tar.gz postgresql-17273d059cd3a5cba818505b0d47a444c36a3513.zip |
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 'src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c b/src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c index 5a0f9caee36..7b1f58e835f 100644 --- a/src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c +++ b/src/interfaces/ecpg/test/expected/preproc-pointer_to_struct.c @@ -289,5 +289,5 @@ if (sqlca.sqlcode < 0) sqlprint();} /* All the memory will anyway be freed at the end */ - return( 0 ); + return 0; } |