From c1907f0cc49e38df9853b7547c9afce5204e4784 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 17 May 2014 17:57:53 -0400 Subject: Fix a bunch of functions that were declared static then defined not-static. Per testing with a compiler that whines about this. --- src/backend/access/transam/xlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/access/transam/xlog.c') 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; -- cgit v1.2.3