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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user