summaryrefslogtreecommitdiff
path: root/ext/opcache/zend_shared_alloc.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-02-20 10:31:24 +0300
committerDmitry Stogov <dmitry@zend.com>2015-02-20 10:31:24 +0300
commit9fb48edf3c32914330b7a5081a34b4328bf6da68 (patch)
tree2e51abe0858fa753992c589d4cb6ac4331fab736 /ext/opcache/zend_shared_alloc.h
parent3d777c8068990fa0bb1072e125073e79c8b96088 (diff)
downloadphp-git-9fb48edf3c32914330b7a5081a34b4328bf6da68.tar.gz
Fixed type mismatch
Diffstat (limited to 'ext/opcache/zend_shared_alloc.h')
-rw-r--r--ext/opcache/zend_shared_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.h b/ext/opcache/zend_shared_alloc.h
index 2ca15db86b..0090dddf8f 100644
--- a/ext/opcache/zend_shared_alloc.h
+++ b/ext/opcache/zend_shared_alloc.h
@@ -91,7 +91,7 @@ typedef struct _handler_entry {
typedef struct _zend_shared_memory_state {
int *positions; /* current positions for each segment */
- int shared_free; /* amount of free shared memory */
+ size_t shared_free; /* amount of free shared memory */
} zend_shared_memory_state;
typedef struct _zend_smm_shared_globals {