1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Change a couple of exit(0) to return 0 to suppress complaints from

not-too-bright compilers.  Per buildfarm results.
This commit is contained in:
Tom Lane
2007-07-15 22:54:21 +00:00
parent 7176e60bc8
commit 84a0445c4d
2 changed files with 15 additions and 16 deletions

View File

@ -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;
}