diff options
author | Felipe Pena <felipe@php.net> | 2011-07-25 11:42:53 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-25 11:42:53 +0000 |
commit | 23e438594d30c3507644575fa39c9736f19d1fe8 (patch) | |
tree | c69687778862780987fae3d3cf05b44210d5b04b /ext/oci8/oci8.c | |
parent | 054e1cafa0f7d83bf9318431cc0ea54a5ff6afaf (diff) | |
download | php-git-23e438594d30c3507644575fa39c9736f19d1fe8.tar.gz |
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/oci8/oci8.c')
-rw-r--r-- | ext/oci8/oci8.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 13713d10ea..9417dec0d9 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -937,7 +937,7 @@ zend_function_entry php_oci_functions[] = { PHP_FALIAS(ocicollsize, oci_collection_size, arginfo_oci_collection_size) PHP_FALIAS(ocicollmax, oci_collection_max, arginfo_oci_collection_max) PHP_FALIAS(ocicolltrim, oci_collection_trim, arginfo_oci_collection_trim) - {NULL,NULL,NULL} + PHP_FE_END }; static @@ -968,7 +968,7 @@ zend_function_entry php_oci_lob_class_functions[] = { PHP_FALIAS(save, oci_lob_save, arginfo_oci_lob_save_method) PHP_FALIAS(savefile, oci_lob_import, arginfo_oci_lob_import_method) PHP_FALIAS(free, oci_free_descriptor, arginfo_oci_free_descriptor_method) - {NULL,NULL,NULL} + PHP_FE_END }; static @@ -985,7 +985,7 @@ zend_function_entry php_oci_coll_class_functions[] = { PHP_FALIAS(max, oci_collection_max, arginfo_oci_collection_max_method) PHP_FALIAS(trim, oci_collection_trim, arginfo_oci_collection_trim_method) PHP_FALIAS(free, oci_free_collection, arginfo_oci_collection_free_method) - {NULL,NULL,NULL} + PHP_FE_END }; zend_module_entry oci8_module_entry = { |