diff options
Diffstat (limited to 'src/interfaces/libpgtcl/pgtcl.c')
-rw-r--r-- | src/interfaces/libpgtcl/pgtcl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/libpgtcl/pgtcl.c b/src/interfaces/libpgtcl/pgtcl.c index 75c8ec5ddad..e8502da5c24 100644 --- a/src/interfaces/libpgtcl/pgtcl.c +++ b/src/interfaces/libpgtcl/pgtcl.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.8 1997/09/07 05:03:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.9 1997/09/08 02:40:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -34,11 +34,11 @@ static void Pgtcl_AtExit(ClientData cData) { - Pg_clientData *cd = (Pg_clientData *) cData; - Tcl_HashEntry *hent; - Tcl_HashSearch hsearch; + Pg_clientData *cd = (Pg_clientData *) cData; + Tcl_HashEntry *hent; + Tcl_HashSearch hsearch; Pg_ConnectionId *connid; - PGconn *conn; + PGconn *conn; while ((hent = Tcl_FirstHashEntry(&(cd->dbh_hash), &hsearch)) != NULL) { @@ -67,7 +67,7 @@ Pgtcl_Shutdown(ClientData cData, Tcl_Interp * interp) int Pgtcl_Init(Tcl_Interp * interp) { - Pg_clientData *cd; + Pg_clientData *cd; /* Create and initialize the client data area */ cd = (Pg_clientData *) ckalloc(sizeof(Pg_clientData)); |