From a2ee579b6def8e0bde876c6c2fc9d4b8ec2b6b67 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 6 Sep 2016 13:26:43 -0400 Subject: [PATCH] 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. --- src/bin/initdb/initdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 94074928cb..3350e13059 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);