diff options
| author | Tom Lane | 2007-07-15 22:54:21 +0000 |
|---|---|---|
| committer | Tom Lane | 2007-07-15 22:54:21 +0000 |
| commit | 84a0445c4d48f2254cd3a248b5e4bda8c64c0190 (patch) | |
| tree | 0e6b07395e12ea2106e1d0573bebfd30f6674ca0 /contrib/oid2name/oid2name.c | |
| parent | 7176e60bc8cee15e5ff7a76545630ff332d8fabc (diff) | |
Change a couple of exit(0) to return 0 to suppress complaints from
not-too-bright compilers. Per buildfarm results.
Diffstat (limited to 'contrib/oid2name/oid2name.c')
| -rw-r--r-- | contrib/oid2name/oid2name.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c index 79df423b55..691b2f28d1 100644 --- a/contrib/oid2name/oid2name.c +++ b/contrib/oid2name/oid2name.c @@ -4,7 +4,7 @@ * * Originally by * B. Palmer, bpalmer@crimelabs.net 1-17-2001 - * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.30 2006/10/19 20:38:48 tgl Exp $ + * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.31 2007/07/15 22:54:20 tgl Exp $ */ #include "postgres_fe.h" @@ -575,5 +575,5 @@ main(int argc, char **argv) sql_exec_dumpalldbs(pgconn, my_opts); PQfinish(pgconn); - exit(0); + return 0; } |
