summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2000-12-29 22:46:37 +0000
committerTom Lane2000-12-29 22:46:37 +0000
commitaa44078e2117d0bff2d61e3a92f131ac4573ede3 (patch)
tree20b1514a4b139b51972b9bf03b91b10d2cdd6a71
parent7f60b81e1ab7cbb27298e980f25445dfa58d50bb (diff)
column and tuple numbers should be int not size_t.
-rw-r--r--src/interfaces/libpgtcl/pgtclCmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpgtcl/pgtclCmds.c b/src/interfaces/libpgtcl/pgtclCmds.c
index 8eb8d27e886..4ffccdfe9a5 100644
--- a/src/interfaces/libpgtcl/pgtclCmds.c
+++ b/src/interfaces/libpgtcl/pgtclCmds.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.51 2000/12/03 20:45:39 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.52 2000/12/29 22:46:37 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1648,7 +1648,7 @@ Pg_select(ClientData cData, Tcl_Interp *interp, int argc, char **argv)
PGresult *result;
int r,
retval;
- size_t tupno,
+ int tupno,
column,
ncols;
Tcl_DString headers;