mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 18:50:17 -04:00
Blindly fix a dtrace probe in lwlock.c for a removed local variable.
Per buildfarm member locust.
This commit is contained in:
parent
966115c305
commit
740a4ec7f4
1 changed files with 1 additions and 1 deletions
|
|
@ -1192,7 +1192,7 @@ LWLockAcquireOrWait(LWLock *lock, LWLockMode mode)
|
|||
#ifdef LWLOCK_STATS
|
||||
lwstats->block_count++;
|
||||
#endif
|
||||
TRACE_POSTGRESQL_LWLOCK_WAIT_START(T_NAME(l), T_ID(l), mode);
|
||||
TRACE_POSTGRESQL_LWLOCK_WAIT_START(T_NAME(lock), T_ID(lock), mode);
|
||||
|
||||
for (;;)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue