mirror of
https://github.com/postgres/postgres.git
synced 2026-04-20 22:00:13 -04:00
Fix mismatch in const:ness of parameters.
This commit is contained in:
parent
6cf9f31908
commit
ea382424ee
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue