Skip to content

Commit 390408e

Browse files
committed
Fix incorrect format placeholders
1 parent a7ebd82 commit 390408e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/replication/syncrep.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ SyncRepInitConfig(void)
416416
SpinLockRelease(&MyWalSnd->mutex);
417417

418418
ereport(DEBUG1,
419-
(errmsg_internal("standby \"%s\" now has synchronous standby priority %u",
419+
(errmsg_internal("standby \"%s\" now has synchronous standby priority %d",
420420
application_name, priority)));
421421
}
422422
}
@@ -483,7 +483,7 @@ SyncRepReleaseWaiters(void)
483483

484484
if (SyncRepConfig->syncrep_method == SYNC_REP_PRIORITY)
485485
ereport(LOG,
486-
(errmsg("standby \"%s\" is now a synchronous standby with priority %u",
486+
(errmsg("standby \"%s\" is now a synchronous standby with priority %d",
487487
application_name, MyWalSnd->sync_standby_priority)));
488488
else
489489
ereport(LOG,

0 commit comments

Comments
 (0)