From 9fb48edf3c32914330b7a5081a34b4328bf6da68 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 20 Feb 2015 10:31:24 +0300 Subject: [PATCH] Fixed type mismatch --- ext/opcache/zend_shared_alloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/zend_shared_alloc.h b/ext/opcache/zend_shared_alloc.h index 2ca15db86bd..0090dddf8fc 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 {