From: Peter Eisentraut Date: Fri, 24 Feb 2023 13:29:18 +0000 (+0100) Subject: Fix comment indentation and whitespace X-Git-Tag: REL_16_BETA1~663 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=62d56f6720cd9483ede8a410a1a2cd6a0202c091;p=thirdparty%2Fpostgresql.git 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 --- 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)