diff options
| author | Magnus Hagander | 2009-07-22 11:07:02 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2009-07-22 11:07:02 +0000 |
| commit | ea382424eec3c7cbb0b3cda8f650e9b88669893a (patch) | |
| tree | fe16c9913ee474be3988f06a1e36805436f8fc9d /src/interfaces | |
| parent | 6cf9f319082735ebb9ae013d1165586dc073c217 (diff) | |
Fix mismatch in const:ness of parameters.
Diffstat (limited to 'src/interfaces')
| -rw-r--r-- | src/interfaces/ecpg/ecpglib/prepare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/prepare.c b/src/interfaces/ecpg/ecpglib/prepare.c index 70d150ee39a..5be2ac04994 100644 --- a/src/interfaces/ecpg/ecpglib/prepare.c +++ b/src/interfaces/ecpg/ecpglib/prepare.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.31 2009/06/11 14:49:13 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.32 2009/07/22 11:07:02 mha Exp $ */ #define POSTGRES_ECPG_INTERNAL #include "postgres_fe.h" @@ -463,7 +463,7 @@ AddStmtToCache(int lineno, /* line # of statement */ /* handle cache and preparation of statments in auto-prepare mode */ bool -ecpg_auto_prepare(int lineno, const char *connection_name, int compat, char **name, const char *query) +ecpg_auto_prepare(int lineno, const char *connection_name, const int compat, char **name, const char *query) { int entNo; |
