8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c8459 commit 9f7c527Copy full SHA for 9f7c527
src/backend/storage/lmgr/lwlock.c
@@ -167,7 +167,7 @@ static void InitializeLWLocks(void);
167
static void RegisterLWLockTranches(void);
168
169
static inline void LWLockReportWaitStart(LWLock *lock);
170
-static inline void LWLockReportWaitEnd();
+static inline void LWLockReportWaitEnd(void);
171
172
#ifdef LWLOCK_STATS
173
typedef struct lwlock_stats_key
@@ -742,7 +742,7 @@ LWLockReportWaitStart(LWLock *lock)
742
* Report end of wait event for light-weight locks.
743
*/
744
static inline void
745
-LWLockReportWaitEnd()
+LWLockReportWaitEnd(void)
746
{
747
pgstat_report_wait_end();
748
}
0 commit comments