diff options
| author | Bruce Momjian | 2001-11-15 18:40:52 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-11-15 18:40:52 +0000 |
| commit | d4337f6a7c6ee7751c1427f0cb4acf90e1485955 (patch) | |
| tree | 95bb01929de97076e18f34e7cffc93d4cbf851f9 /contrib/oid2name/oid2name.c | |
| parent | 10d4faab2bd7e47ffaeccef72ed60158c59c348f (diff) | |
Read getopt() into an int, not char.
Diffstat (limited to 'contrib/oid2name/oid2name.c')
| -rw-r--r-- | contrib/oid2name/oid2name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c index 99352cc19c4..2d4e2b8d0f8 100644 --- a/contrib/oid2name/oid2name.c +++ b/contrib/oid2name/oid2name.c @@ -52,7 +52,7 @@ void sql_exec_searchoid(PGconn *, int); void get_opts(int argc, char **argv, struct options * my_opts) { - char c; + int c; /* set the defaults */ my_opts->getdatabase = 0; |
