- Make usage of new PHP_FE_END macro

This commit is contained in:
Felipe Pena 2011-07-25 11:42:53 +00:00
parent 054e1cafa0
commit 23e438594d
111 changed files with 170 additions and 172 deletions

View file

@ -35,7 +35,7 @@
/* {{{ pdo_sqlite_functions[] */
const zend_function_entry pdo_sqlite_functions[] = {
{NULL, NULL, NULL}
PHP_FE_END
};
/* }}} */

View file

@ -593,7 +593,7 @@ static PHP_METHOD(SQLite, sqliteCreateAggregate)
static const zend_function_entry dbh_methods[] = {
PHP_ME(SQLite, sqliteCreateFunction, NULL, ZEND_ACC_PUBLIC)
PHP_ME(SQLite, sqliteCreateAggregate, NULL, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
PHP_FE_END
};
static const zend_function_entry *get_driver_methods(pdo_dbh_t *dbh, int kind TSRMLS_DC)