diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-09 18:21:46 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-09 18:21:46 +0000 |
commit | 8ff263f3624a43e93a76f5b4491db2f84d24fc40 (patch) | |
tree | d9d01840e99c59eb77886293334bc8e48cc15a55 /src | |
parent | bf6992b499c8d8b36d3625b8e50867a6ba0cdcd6 (diff) | |
download | postgresql-8ff263f3624a43e93a76f5b4491db2f84d24fc40.tar.gz postgresql-8ff263f3624a43e93a76f5b4491db2f84d24fc40.zip |
Fix portability problem (result of getopt is int, not char).
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/entab/entab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/entab/entab.c b/src/tools/entab/entab.c index 6350a11b1d1..4e7240ea42c 100644 --- a/src/tools/entab/entab.c +++ b/src/tools/entab/entab.c @@ -45,8 +45,8 @@ char **argv; *src, *dst, quote_char, - ch, *cp; + int ch; FILE *in_file; if ((cp = strrchr(argv[0], '/')) != NULL) |