diff options
author | Marcus Boerger <helly@php.net> | 2006-05-10 00:00:13 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-05-10 00:00:13 +0000 |
commit | 77c1b56cd759b8fd819976a5aa7c40b5268a81f4 (patch) | |
tree | 068e4b951e7551359e9f8fc978fa24633f7097d8 /ext/reflection/php_reflection.c | |
parent | 11f26c2c2a3f41863347fcabddd6f1097518ce99 (diff) | |
download | php-git-77c1b56cd759b8fd819976a5aa7c40b5268a81f4.tar.gz |
- Update after api changes
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 63e1f83f58..9d8260f129 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4409,7 +4409,7 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */ reflection_object_handlers.write_property = _reflection_write_property; INIT_CLASS_ENTRY(_reflection_entry, "ReflectionException", reflection_exception_functions); - reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_exception_get_default(), NULL TSRMLS_CC); + reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC); INIT_CLASS_ENTRY(_reflection_entry, "Reflection", reflection_functions); reflection_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC); |