]> granicus.if.org Git - php/commitdiff
- nuke extra s
authorJani Taskinen <jani@php.net>
Fri, 2 Nov 2007 14:04:52 +0000 (14:04 +0000)
committerJani Taskinen <jani@php.net>
Fri, 2 Nov 2007 14:04:52 +0000 (14:04 +0000)
ext/spl/spl_observer.c

index 90398a566b5f0b6248b55af6789835cc2c57b062..ab7191a0cb7cbc0e56355af550f884ddfb6fe91e 100755 (executable)
@@ -116,7 +116,7 @@ static zend_object_value spl_object_storage_new_ex(zend_class_entry *class_type,
 }
 /* }}} */
 
-static HashTable* spl_object_storage_debug_infos(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */
+static HashTable* spl_object_storage_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */
 {
        spl_SplObjectStorage *intern = (spl_SplObjectStorage*)zend_object_store_get_object(obj TSRMLS_CC);
        HashTable *rv, *props;
@@ -474,7 +474,7 @@ PHP_MINIT_FUNCTION(spl_observer)
 
        REGISTER_SPL_STD_CLASS_EX(SplObjectStorage, spl_SplObjectStorage_new, spl_funcs_SplObjectStorage);
        memcpy(&spl_handler_SplObjectStorage, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
-       spl_handler_SplObjectStorage.get_debug_info = spl_object_storage_debug_infos;
+       spl_handler_SplObjectStorage.get_debug_info = spl_object_storage_debug_info;
 
        REGISTER_SPL_IMPLEMENTS(SplObjectStorage, Countable);
        REGISTER_SPL_IMPLEMENTS(SplObjectStorage, Iterator);