aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/lib/execute.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2000-09-21 11:56:08 +0000
committerMichael Meskes <meskes@postgresql.org>2000-09-21 11:56:08 +0000
commitb4c8d47ab0c3c570e31c29696f74a204a33df647 (patch)
tree69cec3091fef44b7910e695d27f4b586e5e51999 /src/interfaces/ecpg/lib/execute.c
parenteab8ee9524eb935dcf9339e829ac2c990ef50a5f (diff)
downloadpostgresql-b4c8d47ab0c3c570e31c29696f74a204a33df647.tar.gz
postgresql-b4c8d47ab0c3c570e31c29696f74a204a33df647.zip
*** empty log message ***
Diffstat (limited to 'src/interfaces/ecpg/lib/execute.c')
-rw-r--r--src/interfaces/ecpg/lib/execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/lib/execute.c b/src/interfaces/ecpg/lib/execute.c
index 762aab49c7e..a0bef5ae2ae 100644
--- a/src/interfaces/ecpg/lib/execute.c
+++ b/src/interfaces/ecpg/lib/execute.c
@@ -262,7 +262,7 @@ static void
ECPGtypeinfocache_push(struct ECPGtype_information_cache **cache, int oid, bool isarray, int lineno)
{
struct ECPGtype_information_cache *new_entry
- = ecpg_alloc(sizeof(struct ECPGtype_information_cache), lineno);
+ = (struct ECPGtype_information_cache *) ecpg_alloc(sizeof(struct ECPGtype_information_cache), lineno);
new_entry->oid = oid;
new_entry->isarray = isarray;
new_entry->next = *cache;
@@ -989,7 +989,7 @@ ECPGdo(int lineno, const char *connection_name, char *query,...)
*
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
*
- * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.9 2000/09/20 13:25:51 meskes Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.10 2000/09/21 11:56:07 meskes Exp $
*/
PGconn *ECPG_internal_get_connection(char *name);