Skip to content

Commit 261cf89

Browse files
committed
Fix incorrect format placeholders
1 parent da324d6 commit 261cf89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/storage/ipc/standby.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,15 +1347,15 @@ LogCurrentRunningXacts(RunningTransactions CurrRunningXacts)
13471347

13481348
if (CurrRunningXacts->subxid_overflow)
13491349
elog(trace_recovery(DEBUG2),
1350-
"snapshot of %u running transactions overflowed (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
1350+
"snapshot of %d running transactions overflowed (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
13511351
CurrRunningXacts->xcnt,
13521352
LSN_FORMAT_ARGS(recptr),
13531353
CurrRunningXacts->oldestRunningXid,
13541354
CurrRunningXacts->latestCompletedXid,
13551355
CurrRunningXacts->nextXid);
13561356
else
13571357
elog(trace_recovery(DEBUG2),
1358-
"snapshot of %u+%u running transaction ids (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
1358+
"snapshot of %d+%d running transaction ids (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
13591359
CurrRunningXacts->xcnt, CurrRunningXacts->subxcnt,
13601360
LSN_FORMAT_ARGS(recptr),
13611361
CurrRunningXacts->oldestRunningXid,

0 commit comments

Comments
 (0)