summaryrefslogtreecommitdiff
path: root/ext/intl/locale/locale_class.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/intl/locale/locale_class.c')
-rw-r--r--ext/intl/locale/locale_class.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/locale/locale_class.c b/ext/intl/locale/locale_class.c
index eec4699b6d..6300666c59 100644
--- a/ext/intl/locale/locale_class.c
+++ b/ext/intl/locale/locale_class.c
@@ -92,14 +92,14 @@ zend_function_entry Locale_class_functions[] = {
/* {{{ locale_register_Locale_class
* Initialize 'Locale' class
*/
-void locale_register_Locale_class( TSRMLS_D )
+void locale_register_Locale_class( void )
{
zend_class_entry ce;
/* Create and register 'Locale' class. */
INIT_CLASS_ENTRY( ce, "Locale", Locale_class_functions );
ce.create_object = NULL;
- Locale_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
+ Locale_ce_ptr = zend_register_internal_class( &ce );
/* Declare 'Locale' class properties. */
if( !Locale_ce_ptr )