From aa44078e2117d0bff2d61e3a92f131ac4573ede3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 29 Dec 2000 22:46:37 +0000 Subject: [PATCH] column and tuple numbers should be int not size_t. --- src/interfaces/libpgtcl/pgtclCmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interfaces/libpgtcl/pgtclCmds.c b/src/interfaces/libpgtcl/pgtclCmds.c index 8eb8d27e88..4ffccdfe9a 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;