summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-04-16 14:50:54 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-04-16 14:50:54 -0400
commit0a32768c1059bffd32621dba5f19528c946c7d6f (patch)
tree9afe026f8c70f02506decacb5f2998ec7a31da03 /src
parent992df96580c544dc3f72b38d8e0a946f2b462749 (diff)
Fix missing "static".
Per buildfarm member pademelon.
Diffstat (limited to 'src')
-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 c0b143df4c9..88d4c81811f 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7339,7 +7339,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;