From 9f7c527af308dcdaba2f0ff9d362d672e8886fb1 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Sun, 27 Mar 2016 22:53:31 +0200 Subject: [PATCH] Fix LWLockReportWaitEnd() parameter list to be (void). Previously it was an "old style" function declaration. --- src/backend/storage/lmgr/lwlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index 31626cb5b0..53ae7d5f31 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -167,7 +167,7 @@ static void InitializeLWLocks(void); static void RegisterLWLockTranches(void); static inline void LWLockReportWaitStart(LWLock *lock); -static inline void LWLockReportWaitEnd(); +static inline void LWLockReportWaitEnd(void); #ifdef LWLOCK_STATS typedef struct lwlock_stats_key @@ -742,7 +742,7 @@ LWLockReportWaitStart(LWLock *lock) * Report end of wait event for light-weight locks. */ static inline void -LWLockReportWaitEnd() +LWLockReportWaitEnd(void) { pgstat_report_wait_end(); } -- 2.40.0