From: Anatol Belski Date: Wed, 22 Oct 2014 18:45:50 +0000 (+0200) Subject: fix datatype mismatch warning X-Git-Tag: POST_NATIVE_TLS_MERGE^2~49^2~39^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=958c6d1c5deb4cc16ee54a9fbd9e93958e086a79;p=php fix datatype mismatch warning --- diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 6a06a55d94..53aede1469 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -835,7 +835,7 @@ PHP_FUNCTION(clearstatcache) return; } - php_clear_stat_cache(clear_realpath_cache, filename, filename_len TSRMLS_CC); + php_clear_stat_cache(clear_realpath_cache, filename, (int)filename_len TSRMLS_CC); } /* }}} */