From: Anatol Belski Date: Wed, 11 Oct 2017 06:58:59 +0000 (+0200) Subject: Fix datatype X-Git-Tag: php-7.2.0RC5~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53169dc48097b906a37a552ccc5d4e6c81fa069e;p=php Fix datatype --- diff --git a/Zend/zend_virtual_cwd.c b/Zend/zend_virtual_cwd.c index 3e95795b08..73f63a14c5 100644 --- a/Zend/zend_virtual_cwd.c +++ b/Zend/zend_virtual_cwd.c @@ -616,7 +616,7 @@ CWD_API void realpath_cache_del(const char *path, size_t path_len) /* {{{ */ } /* }}} */ -static inline void realpath_cache_add(const char *path, int path_len, const char *realpath, size_t realpath_len, int is_dir, time_t t) /* {{{ */ +static inline void realpath_cache_add(const char *path, size_t path_len, const char *realpath, size_t realpath_len, int is_dir, time_t t) /* {{{ */ { zend_long size = sizeof(realpath_cache_bucket) + path_len + 1; int same = 1;