From: Dmitry Stogov Date: Fri, 20 Feb 2015 07:31:24 +0000 (+0300) Subject: Fixed type mismatch X-Git-Tag: php-5.5.23RC1~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fb48edf3c32914330b7a5081a34b4328bf6da68;p=php Fixed type mismatch --- 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 {