Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d61576

Browse files
committed
Add missing 'static' keyword to suppress compiler complaints.
gcc does not complain about this mistake, but other compilers do.
1 parent e896912 commit 8d61576

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
*
2424
* IDENTIFICATION
25-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.256 2002/04/29 04:10:02 tgl Exp $
25+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.257 2002/04/29 17:30:18 tgl Exp $
2626
*
2727
*-------------------------------------------------------------------------
2828
*/
@@ -3229,7 +3229,7 @@ dumpDBComment(Archive *fout)
32293229
* wites out to fout the queries to recrease a user-defined domains
32303230
* as requested by dumpTypes
32313231
*/
3232-
void
3232+
static void
32333233
dumpOneDomain(Archive *fout, TypeInfo *tinfo)
32343234
{
32353235
PQExpBuffer q = createPQExpBuffer();

0 commit comments

Comments
 (0)