Fix comment indentation and whitespace
authorPeter Eisentraut
Fri, 24 Feb 2023 13:29:18 +0000 (14:29 +0100)
committerPeter Eisentraut
Fri, 24 Feb 2023 13:54:41 +0000 (14:54 +0100)
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

index 7760380f00df399a22df3ae9b0e0904779b2264d..12b54f15cd6ae849152f5c8d012baf3657d63c93 100644 (file)
@@ -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)