summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2013-03-19 10:45:38 +0400
committerDmitry Stogov <dmitry@zend.com>2013-03-19 10:45:38 +0400
commitf621f0b8e7f1a2d061d37e16f71bcb2000c2a786 (patch)
tree321ba8c3f400983a32e09b9219d0405adc700660
parenta62ffb72f403d255c744b27f617ee6b6ac62c216 (diff)
downloadphp-git-f621f0b8e7f1a2d061d37e16f71bcb2000c2a786.tar.gz
strlen() returns size_t
-rw-r--r--ext/opcache/zend_accelerator_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_accelerator_module.c b/ext/opcache/zend_accelerator_module.c
index 290813c06b..778fee54b3 100644
--- a/ext/opcache/zend_accelerator_module.c
+++ b/ext/opcache/zend_accelerator_module.c
@@ -429,7 +429,7 @@ static zval* accelerator_get_scripts(TSRMLS_D)
for (cache_entry = ZCSG(hash).hash_table[i]; cache_entry; cache_entry = cache_entry->next) {
zend_persistent_script *script;
char *str;
- int len;
+ size_t len;
if (cache_entry->indirect) continue;