From 17273d059cd3a5cba818505b0d47a444c36a3513 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 17 Aug 2017 12:39:20 -0400 Subject: 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 Reviewed-by: Ryan Murphy --- src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc') diff --git a/src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc b/src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc index ec94273408..1ec651e3fc 100644 --- a/src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc +++ b/src/interfaces/ecpg/test/preproc/pointer_to_struct.pgc @@ -96,5 +96,5 @@ int main() EXEC SQL disconnect all; /* All the memory will anyway be freed at the end */ - return( 0 ); + return 0; } -- cgit v1.2.1