Commit ea382424 authored by Magnus Hagander's avatar Magnus Hagander

Fix mismatch in const:ness of parameters.

parent 6cf9f319
/* $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 #define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h" #include "postgres_fe.h"
...@@ -463,7 +463,7 @@ AddStmtToCache(int lineno, /* line # of statement */ ...@@ -463,7 +463,7 @@ AddStmtToCache(int lineno, /* line # of statement */
/* handle cache and preparation of statments in auto-prepare mode */ /* handle cache and preparation of statments in auto-prepare mode */
bool 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; int entNo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment