diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-09-06 13:26:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-09-06 13:26:43 -0400 |
commit | a2ee579b6def8e0bde876c6c2fc9d4b8ec2b6b67 (patch) | |
tree | d959f342b29e44a1f58912e0de0045ff2404e62d | |
parent | dcb12ce8d8691e0e526d3f38d14c4d7fc9c664f5 (diff) | |
download | postgresql-a2ee579b6def8e0bde876c6c2fc9d4b8ec2b6b67.tar.gz postgresql-a2ee579b6def8e0bde876c6c2fc9d4b8ec2b6b67.zip |
Repair whitespace in initdb message.
What used to be four spaces somehow turned into a tab and a couple of
spaces in commit a00c58314, no doubt from overhelpful emacs autoindent.
Noted by Peter Eisentraut.
-rw-r--r-- | src/bin/initdb/initdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 94074928cbe..3350e130596 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3604,7 +3604,7 @@ main(int argc, char *argv[]) appendPQExpBufferStr(start_db_cmd, " -l logfile start"); printf(_("\nSuccess. You can now start the database server using:\n\n" - " %s\n\n"), + " %s\n\n"), start_db_cmd->data); destroyPQExpBuffer(start_db_cmd); |