Fix breakage introduced by careless snprintf patching.

This commit is contained in:
Tom Lane 2002-09-05 21:09:54 +00:00
parent fb473bc6fa
commit bed4f65499

View File

@ -102,7 +102,7 @@ _rserv_log_()
if (keynum == ObjectIdAttributeNumber)
{
snprintf(oidbuf, "%u", sizeof(oidbuf), HeapTupleGetOid(tuple));
snprintf(oidbuf, sizeof(oidbuf), "%u", HeapTupleGetOid(tuple));
key = oidbuf;
}
else