Commit: bec270ffc877815e9feffd80eecf9f807f6d6c89 Author: Anatol Belski <a...@php.net> Wed, 27 Nov 2013 04:58:57 -0800 Parents: b9c19f5d74acefe1697816c8babef420499f0a14 Branches: str_size_and_int64
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=bec270ffc877815e9feffd80eecf9f807f6d6c89 Log: fix function definition Changed paths: M Zend/zend_virtual_cwd.c Diff: diff --git a/Zend/zend_virtual_cwd.c b/Zend/zend_virtual_cwd.c index 1fe6f1d..0b60a74 100644 --- a/Zend/zend_virtual_cwd.c +++ b/Zend/zend_virtual_cwd.c @@ -750,7 +750,7 @@ static inline realpath_cache_bucket* realpath_cache_find(const char *path, zend_ } /* }}} */ -CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC) /* {{{ */ +CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, zend_str_size_int path_len, time_t t TSRMLS_DC) /* {{{ */ { return realpath_cache_find(path, path_len, t TSRMLS_CC); } -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php