From: Tom Lane Date: Sat, 16 Apr 2016 18:50:54 +0000 (-0400) Subject: Fix missing "static". X-Git-Tag: REL9_3_13~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a32768c1059bffd32621dba5f19528c946c7d6f;p=postgresql Fix missing "static". Per buildfarm member pademelon. --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index c0b143df4c..88d4c81811 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;