diff options
| author | Anatol Belski <ab@php.net> | 2014-10-22 20:45:50 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-10-22 20:46:35 +0200 |
| commit | 958c6d1c5deb4cc16ee54a9fbd9e93958e086a79 (patch) | |
| tree | 8ce7dda4c8479fda4502e1427b12d334b1fb72f2 | |
| parent | afb65adefacd4d7ab919a55f6ce29d0397c3a5db (diff) | |
| download | php-git-958c6d1c5deb4cc16ee54a9fbd9e93958e086a79.tar.gz | |
fix datatype mismatch warning
| -rw-r--r-- | ext/standard/filestat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } /* }}} */ |
