diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-04-03 09:44:47 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-04-03 09:44:47 +0200 |
commit | 9301308bd196f614696e0e9492cf0c52f7857f83 (patch) | |
tree | 20bcb2103f2d23f3e5781fcfbdb30e279f673708 /src | |
parent | 226261f387fd8b44420ad03298ef09d83571f9b1 (diff) | |
download | postgresql-9301308bd196f614696e0e9492cf0c52f7857f83.tar.gz postgresql-9301308bd196f614696e0e9492cf0c52f7857f83.zip |
Fix indentation from cafe1056558f
Per buildfarm animal koel
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. |