]> granicus.if.org Git - postgresql/commitdiff
Fix portability problem (result of getopt is int, not char).
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Jan 2002 18:21:46 +0000 (18:21 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Jan 2002 18:21:46 +0000 (18:21 +0000)
src/tools/entab/entab.c

index 6350a11b1d1268e0e98998f63ad48d6fae43be1c..4e7240ea42caaa1c08fdec67ed29addf83df81bf 100644 (file)
@@ -45,8 +45,8 @@ char    **argv;
                           *src,
                           *dst,
                                quote_char,
-                               ch,
                           *cp;
+       int                     ch;
        FILE       *in_file;
 
        if ((cp = strrchr(argv[0], '/')) != NULL)