From: Daniel Gustafsson Date: Wed, 3 Apr 2024 07:44:47 +0000 (+0200) Subject: Fix indentation from cafe1056558f X-Git-Tag: REL_17_BETA1~434 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9301308bd196f614696e0e9492cf0c52f7857f83;p=postgresql.git Fix indentation from cafe1056558f Per buildfarm animal koel --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 1e00b0d4869..c005624e9c3 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3784,8 +3784,8 @@ wait_until_connected(PGconn *conn) /* * If the user sends SIGINT between the cancel_pressed check, and * polling of the socket, it will not be recognized. Instead, we will - * just wait until the next step in the connection sequence or forever, - * which might require users to send SIGTERM or SIGQUIT. + * just wait until the next step in the connection sequence or + * forever, which might require users to send SIGTERM or SIGQUIT. * * Some solutions would include the "self-pipe trick," using * pselect(2) and ppoll(2), or using a timeout.