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 f0ee42d commit 643f75cCopy full SHA for 643f75c
src/backend/postmaster/bgworker.c
@@ -303,8 +303,8 @@ BackgroundWorkerStateChange(void)
303
rw->rw_worker.bgw_notify_pid = slot->worker.bgw_notify_pid;
304
if (!PostmasterMarkPIDForWorkerNotify(rw->rw_worker.bgw_notify_pid))
305
{
306
- elog(DEBUG1, "worker notification PID %u is not valid",
307
- rw->rw_worker.bgw_notify_pid);
+ elog(DEBUG1, "worker notification PID %lu is not valid",
+ (long) rw->rw_worker.bgw_notify_pid);
308
rw->rw_worker.bgw_notify_pid = 0;
309
}
310
0 commit comments