summaryrefslogtreecommitdiff
path: root/ext/intl/formatter
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2010-03-30 23:03:02 +0000
committerJohannes Schlüter <johannes@php.net>2010-03-30 23:03:02 +0000
commit26b08f9857e79b3281d580846e8eb9c27b24af32 (patch)
tree76e047f503871cb304b2d3427caffffb7fc1c7ba /ext/intl/formatter
parentd5b2d647c069d9df1eb9ca91813dc7f285bbd015 (diff)
downloadphp-git-26b08f9857e79b3281d580846e8eb9c27b24af32.tar.gz
Remove main/php3_compat.h, for that a few references to `function_entry` have
to be replaced by `zend_function_entry`.
Diffstat (limited to 'ext/intl/formatter')
-rwxr-xr-xext/intl/formatter/formatter_class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/formatter/formatter_class.c b/ext/intl/formatter/formatter_class.c
index a6f45108ea..43d4d741d5 100755
--- a/ext/intl/formatter/formatter_class.c
+++ b/ext/intl/formatter/formatter_class.c
@@ -137,7 +137,7 @@ ZEND_END_ARG_INFO()
/* {{{ NumberFormatter_class_functions
* Every 'NumberFormatter' class method has an entry in this table
*/
-static function_entry NumberFormatter_class_functions[] = {
+static zend_function_entry NumberFormatter_class_functions[] = {
PHP_ME( NumberFormatter, __construct, arginfo_numberformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR )
ZEND_FENTRY( create, ZEND_FN( numfmt_create ), arginfo_numberformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
PHP_NAMED_FE( format, ZEND_FN( numfmt_format ), arginfo_numberformatter_format )