mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Fix breakage introduced by careless snprintf patching.
This commit is contained in:
@ -102,7 +102,7 @@ _rserv_log_()
|
|||||||
|
|
||||||
if (keynum == ObjectIdAttributeNumber)
|
if (keynum == ObjectIdAttributeNumber)
|
||||||
{
|
{
|
||||||
snprintf(oidbuf, "%u", sizeof(oidbuf), HeapTupleGetOid(tuple));
|
snprintf(oidbuf, sizeof(oidbuf), "%u", HeapTupleGetOid(tuple));
|
||||||
key = oidbuf;
|
key = oidbuf;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user