Skip to content

Commit 740a4ec

Browse files
committed
Blindly fix a dtrace probe in lwlock.c for a removed local variable.
Per buildfarm member locust.
1 parent 966115c commit 740a4ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/lmgr/lwlock.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ LWLockAcquireOrWait(LWLock *lock, LWLockMode mode)
11921192
#ifdef LWLOCK_STATS
11931193
lwstats->block_count++;
11941194
#endif
1195-
TRACE_POSTGRESQL_LWLOCK_WAIT_START(T_NAME(l), T_ID(l), mode);
1195+
TRACE_POSTGRESQL_LWLOCK_WAIT_START(T_NAME(lock), T_ID(lock), mode);
11961196

11971197
for (;;)
11981198
{

0 commit comments

Comments
 (0)