Commit bed4f654 authored by Tom Lane's avatar Tom Lane

Fix breakage introduced by careless snprintf patching.

parent fb473bc6
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment