diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-27 15:14:55 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-27 15:14:55 -0400 |
commit | d4b2425441b7ab298300142d64bb8020d38b290f (patch) | |
tree | 719a8fc0c88b7cbe3fb3f9221a7d9debeaaace75 /src | |
parent | 6e42130568ad28bed857948f5a3192dbf01624dc (diff) | |
download | postgresql-d4b2425441b7ab298300142d64bb8020d38b290f.tar.gz postgresql-d4b2425441b7ab298300142d64bb8020d38b290f.zip |
Add missing newline in help output.
Daniel Gustafsson
Discussion: https://postgr.es/m/F2FB03F2-B112-4E51-842E-12C50DCA2F4A@yesql.se
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/option.c b/src/bin/pg_upgrade/option.c index e4093ed5afc..8d66be085a4 100644 --- a/src/bin/pg_upgrade/option.c +++ b/src/bin/pg_upgrade/option.c @@ -296,7 +296,7 @@ usage(void) printf(_("Options:\n")); printf(_(" -b, --old-bindir=BINDIR old cluster executable directory\n")); printf(_(" -B, --new-bindir=BINDIR new cluster executable directory (default\n" - " same directory as pg_upgrade)")); + " same directory as pg_upgrade)\n")); printf(_(" -c, --check check clusters only, don't change any data\n")); printf(_(" -d, --old-datadir=DATADIR old cluster data directory\n")); printf(_(" -D, --new-datadir=DATADIR new cluster data directory\n")); |