diff options
author | Anatol Belski <ab@php.net> | 2014-08-20 17:49:52 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-20 17:49:52 +0200 |
commit | 5eefbce083b48cc8281407fb64fdc4c985077483 (patch) | |
tree | a9c08beb31f022507f71f929bdcea6b03376172b /Zend/zend_virtual_cwd.h | |
parent | e08fa78a54f7f1abf5b599bdcef5a7323fa5eb3a (diff) | |
download | php-git-5eefbce083b48cc8281407fb64fdc4c985077483.tar.gz |
fix types in virtual cwd
Diffstat (limited to 'Zend/zend_virtual_cwd.h')
-rw-r--r-- | Zend/zend_virtual_cwd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_virtual_cwd.h b/Zend/zend_virtual_cwd.h index 383b65db32..7c56686f2a 100644 --- a/Zend/zend_virtual_cwd.h +++ b/Zend/zend_virtual_cwd.h @@ -246,8 +246,8 @@ extern virtual_cwd_globals cwd_globals; CWD_API void realpath_cache_clean(TSRMLS_D); CWD_API void realpath_cache_del(const char *path, int path_len TSRMLS_DC); CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC); -CWD_API int realpath_cache_size(TSRMLS_D); -CWD_API int realpath_cache_max_buckets(TSRMLS_D); +CWD_API zend_int_t realpath_cache_size(TSRMLS_D); +CWD_API zend_int_t realpath_cache_max_buckets(TSRMLS_D); CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D); /* The actual macros to be used in programs using TSRM |