diff options
author | Peter Eisentraut | 2022-08-10 09:02:32 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-08-10 09:02:32 +0000 |
commit | fa351b1b1321fe4b9f5201d8ebb6aa42cff27fad (patch) | |
tree | 48eb9254feebb508fac60681c6c5b32b0677c9e5 /src | |
parent | b6ef167564905e8dab8af1b1dba0997ec61204ca (diff) |
Remove unused short option from getopt_long() call
The option was removed in 3ce7f72529 but the letter was left in the
getopt_long() call.
Diffstat (limited to 'src')
-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 8694b05e68c..5f6bc1c28ac 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -2325,7 +2325,7 @@ main(int argc, char **argv) atexit(cleanup_directories_atexit); - while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWkvP", + while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWvP", long_options, &option_index)) != -1) { switch (c) |