From 958c6d1c5deb4cc16ee54a9fbd9e93958e086a79 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 22 Oct 2014 20:45:50 +0200 Subject: [PATCH] fix datatype mismatch warning --- ext/standard/filestat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /* }}} */ -- 2.50.1