mirror of
https://github.com/postgres/postgres.git
synced 2026-03-26 20:34:52 -04:00
Fix portability problem (result of getopt is int, not char).
This commit is contained in:
parent
bf6992b499
commit
8ff263f362
1 changed files with 1 additions and 1 deletions
|
|
@ -45,8 +45,8 @@ char **argv;
|
|||
*src,
|
||||
*dst,
|
||||
quote_char,
|
||||
ch,
|
||||
*cp;
|
||||
int ch;
|
||||
FILE *in_file;
|
||||
|
||||
if ((cp = strrchr(argv[0], '/')) != NULL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue