提交 bed4f654 编写于 作者: T Tom Lane

Fix breakage introduced by careless snprintf patching.

上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册