diff options
author | Dmitry Stogov <dmitry@zend.com> | 2013-06-10 10:36:35 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2013-06-10 10:36:35 +0400 |
commit | 2e9d3e8b39c19ffba559b685f7ed96fee28cba59 (patch) | |
tree | 5ea184fc005bd887fb98142426b832d3cd3e866f | |
parent | 8ae43caeeeacf3338d6f1218455b5aa4b9ef09f7 (diff) | |
download | php-git-2e9d3e8b39c19ffba559b685f7ed96fee28cba59.tar.gz |
Use size_t instead of int
-rw-r--r-- | ext/opcache/zend_shared_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/opcache/zend_shared_alloc.c b/ext/opcache/zend_shared_alloc.c index d752afea1c..cf4e0ff0f7 100644 --- a/ext/opcache/zend_shared_alloc.c +++ b/ext/opcache/zend_shared_alloc.c @@ -99,9 +99,9 @@ void zend_shared_alloc_create_lock(void) } #endif -static void no_memory_bailout(int allocate_size, char *error) +static void no_memory_bailout(size_t allocate_size, char *error) { - zend_accel_error(ACCEL_LOG_FATAL, "Unable to allocate shared memory segment of %d bytes: %s: %s (%d)", allocate_size, error?error:"unknown", strerror(errno), errno ); + zend_accel_error(ACCEL_LOG_FATAL, "Unable to allocate shared memory segment of %ld bytes: %s: %s (%d)", allocate_size, error?error:"unknown", strerror(errno), errno ); } static void copy_shared_segments(void *to, void *from, int count, int size) |