projects
/
postgresql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcb12ce
)
Repair whitespace in initdb message.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 6 Sep 2016 17:26:43 +0000
(13:26 -0400)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/src/bin/initdb/initdb.c
b/src/bin/initdb/initdb.c
index 94074928cbe15dbd1d11cb721b8475bf6d9c0bdf..3350e130596adbd522d9f3f00f99363e54b6f437 100644
(file)
--- 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);