diff options
author | Magnus Hagander <magnus@hagander.net> | 2021-02-10 18:21:55 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2021-02-10 18:21:55 +0100 |
commit | e7f42914854926c2afbb89b9cd0e381fd90766be (patch) | |
tree | 4b5d51a84750334fa9db5161c33b0b892b04907c /src | |
parent | 64990081504661ff5c04dbf20cc4252be66ab149 (diff) | |
download | postgresql-e7f42914854926c2afbb89b9cd0e381fd90766be.tar.gz postgresql-e7f42914854926c2afbb89b9cd0e381fd90766be.zip |
Remove extra Success message at the end of initdb
This was accidentally included in e09155bd62 and is redundant with the
lines right above it.
Reported-By: Peter Eisentraut
Discussion: https://postgr.es/m/455845d1-441d-cc40-d2a7-b47f4e422489@2ndquadrant.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/initdb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 62540a1b37d..b42a08a0958 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3249,8 +3249,6 @@ main(int argc, char *argv[]) start_db_cmd->data); destroyPQExpBuffer(start_db_cmd); - - printf(_("\nSuccess.\n")); } |