diff options
author | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:13:18 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:13:18 +0000 |
commit | 0754b391f30e17fde9d7d14d5e0eb458fc02289a (patch) | |
tree | b24018f02474a9e5d67406ade25e297bdee4b213 /src/interfaces/ecpg/include/ecpglib.h | |
parent | 7340793f31f3a6cee42c6d5b6dc46c05b37dfa9f (diff) | |
download | postgresql-0754b391f30e17fde9d7d14d5e0eb458fc02289a.tar.gz postgresql-0754b391f30e17fde9d7d14d5e0eb458fc02289a.zip |
Removed some unneeded variables and comparisons
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 8c682e5782c..5830df8bdcb 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -1,7 +1,7 @@ /* * this is a small part of c.h since we don't want to leak all postgres * definitions into ecpg programs - * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.77 2008/05/16 15:20:04 petere Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.78 2009/05/20 16:13:18 meskes Exp $ */ #ifndef _ECPGLIB_H @@ -54,7 +54,7 @@ bool ECPGconnect(int, int, const char *, const char *, const char *, const char bool ECPGdo(const int, const int, const int, const char *, const bool, const int, const char *,...); bool ECPGtrans(int, const char *, const char *); bool ECPGdisconnect(int, const char *); -bool ECPGprepare(int, const char *, const int, const char *, const char *); +bool ECPGprepare(int, const char *, const bool, const char *, const char *); bool ECPGdeallocate(int, int, const char *, const char *); bool ECPGdeallocate_all(int, int, const char *); char *ECPGprepared_statement(const char *, const char *, int); |