diff options
| author | Neil Conway <neilc@samurai.com> | 2004-11-09 06:09:40 +0000 |
|---|---|---|
| committer | Neil Conway <neilc@samurai.com> | 2004-11-09 06:09:40 +0000 |
| commit | 1b3e769682141a7c954f5c1603756d10fe57b667 (patch) | |
| tree | 0569d933bf9e97102e8b2bd691ebeeccf6ccf326 /contrib/vacuumlo | |
| parent | 53ee0729b23677351c381cced3a4280d2cf47729 (diff) | |
| download | postgresql-1b3e769682141a7c954f5c1603756d10fe57b667.tar.gz | |
This patch makes some cleanups to contrib/ to silence some sparse
warnings:
- remove pointless "extern" keyword from some function definitions in
contrib/tsearch2
- use "NULL" not "0" as NULL pointer in contrib/tsearch,
contrib/tsearch2, contrib/pgbench, and contrib/vacuumlo
Diffstat (limited to 'contrib/vacuumlo')
| -rw-r--r-- | contrib/vacuumlo/vacuumlo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/vacuumlo/vacuumlo.c b/contrib/vacuumlo/vacuumlo.c index f307034248..600d83cccd 100644 --- a/contrib/vacuumlo/vacuumlo.c +++ b/contrib/vacuumlo/vacuumlo.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.27 2004/08/29 04:12:17 momjian Exp $ + * $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.28 2004/11/09 06:09:40 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -309,7 +309,7 @@ main(int argc, char **argv) param.pg_user = NULL; param.pg_prompt = 0; param.pg_host = NULL; - param.pg_port = 0; + param.pg_port = NULL; param.verbose = 0; param.dry_run = 0; |
