1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Correct documention of lo_unlink return value as int, not Oid.

This commit is contained in:
Bruce Momjian 2002-04-18 14:28:14 +00:00
parent a44a0a4509
commit f8c77a089c

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.26 2002/01/20 22:19:56 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.27 2002/04/18 14:28:14 momjian Exp $
--> -->
<chapter id="largeObjects"> <chapter id="largeObjects">
@ -267,10 +267,10 @@ int lo_close(PGconn *conn, int fd)
<para> <para>
To remove a large object from the database, call To remove a large object from the database, call
<synopsis> <synopsis>
Oid lo_unlink(PGconn *<replaceable class="parameter">conn</replaceable>, Oid lobjId) int lo_unlink(PGconn *<replaceable class="parameter">conn</replaceable>, Oid lobjId)
</synopsis> </synopsis>
The <parameter>lobjId</parameter> argument specifies the OID of the large The <parameter>lobjId</parameter> argument specifies the OID of the large
object to remove. object to remove. In the event of an error, the return value is negative.
</para> </para>
</sect2> </sect2>