Skip to content

Commit d33aeef

Browse files
committed
Fix warning on mingw due to pid_t width, introduced in fe0972e.
1 parent a89850a commit d33aeef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/replication/slot.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ ReplicationSlotCleanup(void)
571571

572572
/* unlocked read of active_pid is ok for debugging purposes */
573573
elog(DEBUG3, "temporary replication slot cleanup: %d in use, active_pid: %d",
574-
i, s->active_pid);
574+
i, (int) s->active_pid);
575575

576576
SpinLockAcquire(&s->mutex);
577577
if (s->active_pid == MyProcPid)

0 commit comments

Comments
 (0)