diff options
author | Peter Eisentraut | 2017-06-14 18:43:54 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-06-14 18:43:54 +0000 |
commit | 4e88fe8f8f148a45feacb50c2eaed9ca9ddea8bb (patch) | |
tree | d1c9b33b53fe3978455aca0e04839bfa00d0f443 | |
parent | f0cfff9da2c577a19dd6a15ffc7b404693b700bc (diff) |
Add missing serial comma
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 3d6fce2e34..54d27dc658 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -2183,7 +2183,7 @@ main(int argc, char **argv) else { fprintf(stderr, - _("%s: invalid wal-method option \"%s\", must be \"fetch\", \"stream\" or \"none\"\n"), + _("%s: invalid wal-method option \"%s\", must be \"fetch\", \"stream\", or \"none\"\n"), progname, optarg); exit(1); } |