diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-04-14 01:34:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-04-14 01:34:24 +0000 |
commit | 07d2c3e0a06047f278d15934ce0de598f894992f (patch) | |
tree | b4f59e1376463c8da2ca256a62f42f56954e6974 | |
parent | a7f2dd347b24c61b66b3ce775763f7428e50fef3 (diff) |
Another static-vs-not-static error.
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index dd1760a9cea..b6b218bdc7d 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -22,7 +22,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.146 2000/04/12 17:16:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.147 2000/04/14 01:34:24 tgl Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -2290,7 +2290,7 @@ getIndices(int *numIndices) *------------------------------------------------------------------ */ -void +static void dumpComment(FILE *fout, const char *target, const char *oid) { |