]> granicus.if.org Git - postgresql/commitdiff
Fix missing static declaration for XLogRead().
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 9 May 2010 18:11:55 +0000 (18:11 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 9 May 2010 18:11:55 +0000 (18:11 +0000)
src/backend/replication/walsender.c

index 07f2b23c911c5f7345ea80f47acdfd6bd8c57431..22272205cdbd9f0ab848ee0af65ba5bea6f88b5f 100644 (file)
@@ -30,7 +30,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.19 2010/04/28 16:54:15 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.20 2010/05/09 18:11:55 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -515,7 +515,7 @@ WalSndKill(int code, Datum arg)
 /*
  * Read 'nbytes' bytes from WAL into 'buf', starting at location 'recptr'
  */
-void
+static void
 XLogRead(char *buf, XLogRecPtr recptr, Size nbytes)
 {
        XLogRecPtr      startRecPtr = recptr;