Fix portability problem (result of getopt is int, not char).

This commit is contained in:
Tom Lane 2002-01-09 18:21:46 +00:00
parent bf6992b499
commit 8ff263f362
1 changed files with 1 additions and 1 deletions

View File

@ -45,8 +45,8 @@ char **argv;
*src,
*dst,
quote_char,
ch,
*cp;
int ch;
FILE *in_file;
if ((cp = strrchr(argv[0], '/')) != NULL)