]> granicus.if.org Git - postgresql/commitdiff
Add missing 'static' keyword to suppress compiler complaints.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 29 Apr 2002 17:30:18 +0000 (17:30 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 29 Apr 2002 17:30:18 +0000 (17:30 +0000)
gcc does not complain about this mistake, but other compilers do.

src/bin/pg_dump/pg_dump.c

index 554345c4bae4958c89df5651a7955b65c4ab4e4c..7cb3ea430bb7968216befd4b58f83971a920a4af 100644 (file)
@@ -22,7 +22,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.256 2002/04/29 04:10:02 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.257 2002/04/29 17:30:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -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();