summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-02-13 22:56:59 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-02-13 22:56:59 +0000
commit5dc8478d20848e43af7acdab48101f0704f90102 (patch)
treecdc2cd3848e211f59bd6ea2fe4044f76f7005c34 /src
parentc6d801f3bfa88635ca53079583ff48f8f5cb9e8e (diff)
Result of lo_read() is int, not size_t. Per Oleg Drokin.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index a9cd4a4fe8c..4b7e41cf063 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -22,7 +22,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.305.2.2 2002/12/27 17:10:55 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.305.2.3 2003/02/13 22:56:59 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -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)