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

@@ -533,7 +533,7 @@ ResourceOwnerReleaseInternal(ResourceOwner owner,
Buffer res = DatumGetBuffer(foundres);
if (isCommit)
elog(PANIC, "lost track of buffer IO on buffer %u", res);
elog(PANIC, "lost track of buffer IO on buffer %d", res);
AbortBufferIO(res);
}