diff options
author | Marcus Boerger <helly@php.net> | 2003-06-11 20:51:14 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-06-11 20:51:14 +0000 |
commit | 76f68f2a51d8217c6110017e5f0df8027421e67b (patch) | |
tree | 34f23ac10ada233c75fb196f5397bd61ec27fd56 /ext/spl/php_spl.c | |
parent | b2c4882d54d8a716c0876aabae6afd703d6a903d (diff) | |
download | php-git-76f68f2a51d8217c6110017e5f0df8027421e67b.tar.gz |
WS and removing unecessary things
Diffstat (limited to 'ext/spl/php_spl.c')
-rwxr-xr-x | ext/spl/php_spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 00b1a37f0c..2d75155695 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -164,6 +164,7 @@ PHP_MINIT_FUNCTION(spl) REGISTER_SPL_STD_CLASS(spl, array_writer_default, spl_array_writer_default_create); REGISTER_SPL_FUNCTIONS(spl, array_writer_default, spl_array_writer_funcs); #endif + return SUCCESS; } /* }}} */ @@ -205,6 +206,7 @@ PHP_MSHUTDOWN_FUNCTION(spl) #ifdef SPL_ARRAY_WRITE ZEND_EXECUTE_HOOK_RESTORE(ZEND_ASSIGN); #endif /* SPL_ARRAY_WRITE */ + return SUCCESS; } /* }}} */ |