Commit 8ff263f3 authored by Tom Lane's avatar Tom Lane

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

parent bf6992b4
...@@ -45,8 +45,8 @@ char **argv; ...@@ -45,8 +45,8 @@ char **argv;
*src, *src,
*dst, *dst,
quote_char, quote_char,
ch,
*cp; *cp;
int ch;
FILE *in_file; FILE *in_file;
if ((cp = strrchr(argv[0], '/')) != NULL) if ((cp = strrchr(argv[0], '/')) != NULL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment