summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/php_pdo_pgsql_int.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2014-05-15 22:33:13 +0800
committerXinchen Hui <laruence@php.net>2014-05-15 22:33:13 +0800
commit49df66be014256a648c2d7970947ae03bcf00c22 (patch)
treea8abe959782dac5816b8649be95df73cbecbed85 /ext/pdo_pgsql/php_pdo_pgsql_int.h
parentb7f6bc51037ed0d9c4b58eddd269255b59768960 (diff)
downloadphp-git-49df66be014256a648c2d7970947ae03bcf00c22.tar.gz
Made a little clean up
Diffstat (limited to 'ext/pdo_pgsql/php_pdo_pgsql_int.h')
-rw-r--r--ext/pdo_pgsql/php_pdo_pgsql_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_pgsql/php_pdo_pgsql_int.h b/ext/pdo_pgsql/php_pdo_pgsql_int.h
index 1fedababd2..4d0652049e 100644
--- a/ext/pdo_pgsql/php_pdo_pgsql_int.h
+++ b/ext/pdo_pgsql/php_pdo_pgsql_int.h
@@ -95,7 +95,7 @@ enum {
};
struct pdo_pgsql_lob_self {
- pdo_dbh_t *dbh;
+ zval dbh;
PGconn *conn;
int lfd;
Oid oid;
@@ -109,7 +109,7 @@ enum pdo_pgsql_specific_constants {
PGSQL_TRANSACTION_UNKNOWN = PQTRANS_UNKNOWN
};
-php_stream *pdo_pgsql_create_lob_stream(pdo_dbh_t *stmt, int lfd, Oid oid TSRMLS_DC);
+php_stream *pdo_pgsql_create_lob_stream(zval *pdh, int lfd, Oid oid TSRMLS_DC);
extern php_stream_ops pdo_pgsql_lob_stream_ops;
#endif /* PHP_PDO_PGSQL_INT_H */