From 62b3ce821a2ba9324e9fc965057a0c2babe2d10b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 29 Apr 2002 17:30:18 +0000 Subject: [PATCH] Add missing 'static' keyword to suppress compiler complaints. gcc does not complain about this mistake, but other compilers do. --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 9ae36c84a5..65ad8b0a32 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -3229,7 +3229,7 @@ dumpDBComment(Archive *fout) * wites out to fout the queries to recrease a user-defined domains * as requested by dumpTypes */ -void +static void dumpOneDomain(Archive *fout, TypeInfo *tinfo) { PQExpBuffer q = createPQExpBuffer(); -- 2.39.5