summaryrefslogtreecommitdiff
path: root/ext/pdo/pdo_stmt.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
committerfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
commita208d9a966905ab2f551acfc93f119b51efc94c7 (patch)
treed5781cdb101153c87b89e22ec876c291e3b970b2 /ext/pdo/pdo_stmt.c
parenta05e8e335d077b8da349d40e8e9523eec554a89e (diff)
downloadphp-git-a208d9a966905ab2f551acfc93f119b51efc94c7.tar.gz
- Nuke php3 legacy
Diffstat (limited to 'ext/pdo/pdo_stmt.c')
-rwxr-xr-xext/pdo/pdo_stmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c
index 021586b90b..75b51d950b 100755
--- a/ext/pdo/pdo_stmt.c
+++ b/ext/pdo/pdo_stmt.c
@@ -1909,7 +1909,7 @@ static PHP_METHOD(PDOStatement, __sleep)
}
/* }}} */
-function_entry pdo_dbstmt_functions[] = {
+zend_function_entry pdo_dbstmt_functions[] = {
PHP_ME(PDOStatement, execute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(PDOStatement, fetch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(PDOStatement, bindParam, second_arg_force_ref, ZEND_ACC_PUBLIC)
@@ -2238,7 +2238,7 @@ zend_object_iterator *pdo_stmt_iter_get(zend_class_entry *ce, zval *object TSRML
/* {{{ overloaded handlers for PDORow class (used by PDO_FETCH_LAZY) */
-function_entry pdo_row_functions[] = {
+zend_function_entry pdo_row_functions[] = {
{NULL, NULL, NULL}
};