From: Tom Lane Date: Thu, 13 Feb 2003 22:56:59 +0000 (+0000) Subject: Result of lo_read() is int, not size_t. Per Oleg Drokin. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9a95d11a5e9c5ef493a17b65c1d06d22376e0007;p=users%2Fbernd%2Fpostgres.git Result of lo_read() is int, not size_t. Per Oleg Drokin. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index c4280405cf..bd7da0f611 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -1298,7 +1298,7 @@ dumpBlobs(Archive *AH, char *junkOid, void *junkVal) int i; int loFd; char buf[loBufSize]; - size_t cnt; + int cnt; Oid blobOid; if (g_verbose)