diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-01 09:42:04 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-01 10:07:05 +0200 |
commit | ec22e5aa3841770259161ff260da19b781af536e (patch) | |
tree | 0f3ec76f878b24410a94c66f635e6149ce85e812 /ext/pdo_pgsql/pdo_pgsql.c | |
parent | d92229d8c78aac25925284e23aa7903dca9ed005 (diff) | |
download | php-git-ec22e5aa3841770259161ff260da19b781af536e.tar.gz |
Get rid of empty function entries
Closes GH-5917
Diffstat (limited to 'ext/pdo_pgsql/pdo_pgsql.c')
-rw-r--r-- | ext/pdo_pgsql/pdo_pgsql.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ext/pdo_pgsql/pdo_pgsql.c b/ext/pdo_pgsql/pdo_pgsql.c index d809ee50cb..4764419e47 100644 --- a/ext/pdo_pgsql/pdo_pgsql.c +++ b/ext/pdo_pgsql/pdo_pgsql.c @@ -26,12 +26,6 @@ #include "php_pdo_pgsql.h" #include "php_pdo_pgsql_int.h" -/* {{{ pdo_pgsql_functions[] */ -static const zend_function_entry pdo_pgsql_functions[] = { - PHP_FE_END -}; -/* }}} */ - /* {{{ pdo_sqlite_deps */ static const zend_module_dep pdo_pgsql_deps[] = { ZEND_MOD_REQUIRED("pdo") @@ -44,7 +38,7 @@ zend_module_entry pdo_pgsql_module_entry = { STANDARD_MODULE_HEADER_EX, NULL, pdo_pgsql_deps, "pdo_pgsql", - pdo_pgsql_functions, + NULL, PHP_MINIT(pdo_pgsql), PHP_MSHUTDOWN(pdo_pgsql), NULL, |