diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-08-21 12:02:48 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-08-21 12:02:48 +0400 |
commit | e9439f62e5e3696728accf21bf90b0c07fbed4df (patch) | |
tree | c1554dee44c8491e6defc220f1a6979e0c73b7e2 /ext/spl/php_spl.h | |
parent | 92ac625b94e3dc79a0c9def934c61d83397afe81 (diff) | |
download | php-git-e9439f62e5e3696728accf21bf90b0c07fbed4df.tar.gz |
Avoid reallocation and copying
Diffstat (limited to 'ext/spl/php_spl.h')
-rw-r--r-- | ext/spl/php_spl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.h b/ext/spl/php_spl.h index b186255f57..c2b1837e8d 100644 --- a/ext/spl/php_spl.h +++ b/ext/spl/php_spl.h @@ -79,7 +79,7 @@ PHP_FUNCTION(class_parents); PHP_FUNCTION(class_implements); PHP_FUNCTION(class_uses); -PHPAPI void php_spl_object_hash(zval *obj, char* md5str TSRMLS_DC); +PHPAPI zend_string *php_spl_object_hash(zval *obj TSRMLS_DC); #endif /* PHP_SPL_H */ |