diff options
author | Michael Meskes <meskes@postgresql.org> | 2002-01-08 14:25:06 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2002-01-08 14:25:06 +0000 |
commit | 1e15f9e11925467ec8799175b13296eca2a15b98 (patch) | |
tree | 5b92eb1e18347a4480f1f538c24416abb6b205ac /src/interfaces/ecpg/lib/extern.h | |
parent | 055d4f9208b5bbd54caf33af676e6b15c53dcad5 (diff) | |
download | postgresql-1e15f9e11925467ec8799175b13296eca2a15b98.tar.gz postgresql-1e15f9e11925467ec8799175b13296eca2a15b98.zip |
Fixed array pointers, no longer using void * in arithmetics.
Diffstat (limited to 'src/interfaces/ecpg/lib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/lib/extern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/lib/extern.h b/src/interfaces/ecpg/lib/extern.h index 478ec4b99f2..3fa935d6f0e 100644 --- a/src/interfaces/ecpg/lib/extern.h +++ b/src/interfaces/ecpg/lib/extern.h @@ -6,7 +6,7 @@ void ECPGadd_mem(void *ptr, int lineno); bool ECPGget_data(const PGresult *, int, int, int, enum ECPGttype type, - enum ECPGttype, void *, void *, long, long, long, bool); + enum ECPGttype, char *, char *, long, long, long, bool); struct connection *ECPGget_connection(const char *); void ECPGinit_sqlca(void); char *ECPGalloc(long, int); |