summaryrefslogtreecommitdiff
path: root/ext/opcache/zend_shared_alloc.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2016-06-24 21:13:04 +0800
committerXinchen Hui <laruence@gmail.com>2016-06-24 21:13:04 +0800
commit53de1c283053d91cb4add279cad507d000d77a51 (patch)
tree1a85c8cfdace0d5c6c9538a2a10901cc42ca8caa /ext/opcache/zend_shared_alloc.c
parent056c2ce349bd40708026a48a7531b89f8b644dc5 (diff)
downloadphp-git-53de1c283053d91cb4add279cad507d000d77a51.tar.gz
Fixed format
Diffstat (limited to 'ext/opcache/zend_shared_alloc.c')
-rw-r--r--ext/opcache/zend_shared_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.c b/ext/opcache/zend_shared_alloc.c
index ff42c4cf0b..19b27c63d6 100644
--- a/ext/opcache/zend_shared_alloc.c
+++ b/ext/opcache/zend_shared_alloc.c
@@ -299,7 +299,7 @@ static size_t zend_shared_alloc_get_largest_free_block(void)
#define MIN_FREE_MEMORY 64*1024
#define SHARED_ALLOC_FAILED() do { \
- zend_accel_error(ACCEL_LOG_WARNING, "Not enough free shared space to allocate %pd bytes (%pd bytes free)", (zend_long)size, (zend_long)ZSMMG(shared_free)); \
+ zend_accel_error(ACCEL_LOG_WARNING, "Not enough free shared space to allocate "ZEND_LONG_FMT" bytes ("ZEND_LONG_FMT" bytes free)", (zend_long)size, (zend_long)ZSMMG(shared_free)); \
if (zend_shared_alloc_get_largest_free_block() < MIN_FREE_MEMORY) { \
ZSMMG(memory_exhausted) = 1; \
} \