diff options
author | Aaron Piotrowski <aaron@trowski.com> | 2015-07-03 09:45:03 -0500 |
---|---|---|
committer | Aaron Piotrowski <aaron@trowski.com> | 2015-07-03 09:45:03 -0500 |
commit | ed1b64877d82af71bc64a48bf914046640e8a270 (patch) | |
tree | 914694f44a90a8a76656e76f3fe0c89fdbd25b89 /ext/intl/intl_error.c | |
parent | a812a74c2e60a0ba080057067a7634e4da3f2b9b (diff) | |
download | php-git-ed1b64877d82af71bc64a48bf914046640e8a270.tar.gz |
Switch position of ce in exception ce variable names
Diffstat (limited to 'ext/intl/intl_error.c')
-rw-r--r-- | ext/intl/intl_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/intl_error.c b/ext/intl/intl_error.c index 0118ef652d..a88b559572 100644 --- a/ext/intl/intl_error.c +++ b/ext/intl/intl_error.c @@ -237,8 +237,8 @@ void intl_register_IntlException_class( void ) /* Create and register 'IntlException' class. */ INIT_CLASS_ENTRY_EX( ce, "IntlException", sizeof( "IntlException" ) - 1, NULL ); IntlException_ce_ptr = zend_register_internal_class_ex( &ce, - zend_exception_ce ); - IntlException_ce_ptr->create_object = zend_exception_ce->create_object; + zend_ce_exception ); + IntlException_ce_ptr->create_object = zend_ce_exception->create_object; } smart_str intl_parse_error_to_string( UParseError* pe ) |