From 62d56f6720cd9483ede8a410a1a2cd6a0202c091 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 24 Feb 2023 14:29:18 +0100 Subject: Fix comment indentation and whitespace The previous layout satisfied pgindent but failed the git whitespace check. Fix by not putting the comment first in the line, which pgindent does not handle well. Discussion: https://www.postgresql.org/message-id/flat/480e3c67-b703-46ff-a418-d3b481d68372%40enterprisedb.com --- contrib/postgres_fdw/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/postgres_fdw') diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 7760380f00d..12b54f15cd6 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -449,7 +449,7 @@ connect_pg_server(ForeignServer *server, UserMapping *user) /* OK to make connection */ conn = libpqsrv_connect_params(keywords, values, - /* expand_dbname = */ false, + false, /* expand_dbname */ PG_WAIT_EXTENSION); if (!conn || PQstatus(conn) != CONNECTION_OK) -- cgit v1.2.3