Skip to content

Commit bed4f65

Browse files
committed
Fix breakage introduced by careless snprintf patching.
1 parent fb473bc commit bed4f65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/rserv/rserv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ _rserv_log_()
102102

103103
if (keynum == ObjectIdAttributeNumber)
104104
{
105-
snprintf(oidbuf, "%u", sizeof(oidbuf), HeapTupleGetOid(tuple));
105+
snprintf(oidbuf, sizeof(oidbuf), "%u", HeapTupleGetOid(tuple));
106106
key = oidbuf;
107107
}
108108
else

0 commit comments

Comments
 (0)