summaryrefslogtreecommitdiff
path: root/ext/intl/locale/locale_class.c
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/locale/locale_class.c
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/locale/locale_class.c')
-rwxr-xr-xext/intl/locale/locale_class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/locale/locale_class.c b/ext/intl/locale/locale_class.c
index 8a9efbd832..bba6449ac7 100755
--- a/ext/intl/locale/locale_class.c
+++ b/ext/intl/locale/locale_class.c
@@ -66,7 +66,7 @@ ZEND_END_ARG_INFO()
* Every 'Locale' class method has an entry in this table
*/
-function_entry Locale_class_functions[] = {
+zend_function_entry Locale_class_functions[] = {
ZEND_FENTRY( getDefault, zif_locale_get_default , locale_0_args , ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
ZEND_FENTRY( setDefault, zif_locale_set_default , locale_1_arg , ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
ZEND_FENTRY( getPrimaryLanguage, ZEND_FN( locale_get_primary_language ), locale_1_arg , ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )