Skip to content

Commit

Permalink
Remove unused short option from getopt_long() call
Browse files Browse the repository at this point in the history
The option was removed in 3ce7f72 but the letter was left in the
getopt_long() call.
  • Loading branch information
petere committed Aug 10, 2022
1 parent b6ef167 commit fa351b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/pg_basebackup/pg_basebackup.c
Expand Up @@ -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)
Expand Down

0 comments on commit fa351b1

Please sign in to comment.