Repair whitespace in initdb message.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 6 Sep 2016 17:26:43 +0000 (13:26 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 6 Sep 2016 17:26:43 +0000 (13:26 -0400)
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

index 94074928cbe15dbd1d11cb721b8475bf6d9c0bdf..3350e130596adbd522d9f3f00f99363e54b6f437 100644 (file)
@@ -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);