1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-21 05:21:08 +03:00

Fix incorrect format placeholders

This commit is contained in:
Peter Eisentraut
2023-04-12 10:05:50 +02:00
parent 906116ace1
commit 5f38a2034e
3 changed files with 4 additions and 4 deletions

View File

@@ -204,7 +204,7 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
nunused = (end - nowunused);
Assert(nunused >= 0);
appendStringInfo(buf, ", nunused: %u", nunused);
appendStringInfo(buf, ", nunused: %d", nunused);
appendStringInfoString(buf, ", redirected:");
array_desc(buf, redirected, sizeof(OffsetNumber) * 2,