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 --- doc/src/sgml/spi.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/src') diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml index d04b5a2125e..31535a307d1 100644 --- a/doc/src/sgml/spi.sgml +++ b/doc/src/sgml/spi.sgml @@ -4397,7 +4397,7 @@ execq(text *sql, int cnt) SPI_finish(); pfree(command); - return (proc); + return proc; } -- cgit v1.2.3