diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-06-23 12:47:06 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-06-23 12:47:06 +0300 |
commit | adc95c511495f00cd1a90feff5fff7968e38fc4a (patch) | |
tree | 594019d7d287296c8bd12b47ff41e889f84aa7f9 /ext/pgsql/pgsql.c | |
parent | 4ac29543d6e70d6914e85d36f9b50e18968ebea6 (diff) | |
download | php-git-adc95c511495f00cd1a90feff5fff7968e38fc4a.tar.gz |
Fixed compilation warnings
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index c4dfe2ed9d..4ae0ae63ea 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -6528,7 +6528,7 @@ PHP_FUNCTION(pg_convert) } /* }}} */ -static int do_exec(smart_str *querystr, int expect, PGconn *pg_link, zend_ulong opt) /* {{{ */ +static int do_exec(smart_str *querystr, ExecStatusType expect, PGconn *pg_link, zend_ulong opt) /* {{{ */ { if (opt & PGSQL_DML_ASYNC) { if (PQsendQuery(pg_link, ZSTR_VAL(querystr->s))) { |