diff options
author | Tom Lane | 2002-01-09 18:21:46 +0000 |
---|---|---|
committer | Tom Lane | 2002-01-09 18:21:46 +0000 |
commit | 5dc81e1c085563c8f0f072a853eed1bb1d6ab592 (patch) | |
tree | 17aca00176090a08717b19fbc4d0620b3d417def | |
parent | b0de04142f77795374f7705754ef6e495e93e2ff (diff) |
Fix portability problem (result of getopt is int, not char).
-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 6350a11b1d..4e7240ea42 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) |