Skip to content

Commit 624f7b1

Browse files
peterepull[bot]
authored andcommitted
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
1 parent 34e425b commit 624f7b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/postgres_fdw/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ connect_pg_server(ForeignServer *server, UserMapping *user)
449449

450450
/* OK to make connection */
451451
conn = libpqsrv_connect_params(keywords, values,
452-
/* expand_dbname = */ false,
452+
false, /* expand_dbname */
453453
PG_WAIT_EXTENSION);
454454

455455
if (!conn || PQstatus(conn) != CONNECTION_OK)

0 commit comments

Comments
 (0)