aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2014-05-17 17:57:53 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2014-05-17 17:57:53 -0400
commitc1907f0cc49e38df9853b7547c9afce5204e4784 (patch)
tree1584381688bffeaebd2ff25379c63846d79e857d /src/backend/access/transam/xlog.c
parent6c42b2b10af3f717030966b9f05867f3e065becc (diff)
downloadpostgresql-c1907f0cc49e38df9853b7547c9afce5204e4784.tar.gz
postgresql-c1907f0cc49e38df9853b7547c9afce5204e4784.zip
Fix a bunch of functions that were declared static then defined not-static.
Per testing with a compiler that whines about this.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 3d752c6418c..d675560894e 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -8318,7 +8318,7 @@ CreateCheckPoint(int flags)
* CreateRestartPoint() allows for the case where recovery may end before
* the restartpoint completes so there is no concern of concurrent behaviour.
*/
-void
+static void
CreateEndOfRecoveryRecord(void)
{
xl_end_of_recovery xlrec;