Skip to content

Commit fa351b1

Browse files
committed
Remove unused short option from getopt_long() call
The option was removed in 3ce7f72 but the letter was left in the getopt_long() call.
1 parent b6ef167 commit fa351b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2325,7 +2325,7 @@ main(int argc, char **argv)
23252325

23262326
atexit(cleanup_directories_atexit);
23272327

2328-
while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWkvP",
2328+
while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWvP",
23292329
long_options, &option_index)) != -1)
23302330
{
23312331
switch (c)

0 commit comments

Comments
 (0)