summaryrefslogtreecommitdiff
path: root/ext/opcache/shared_alloc_win32.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-10-04 14:33:09 +0200
committerAnatol Belski <ab@php.net>2015-10-04 16:36:53 +0200
commita549a3ac179ec98e2e706e51f3df70e3bda553b2 (patch)
tree3df2b999a86d58914169fec789ba45c4ea72eaca /ext/opcache/shared_alloc_win32.c
parentc97198e18145fd1f90a4b09979cbec25afa20afd (diff)
downloadphp-git-a549a3ac179ec98e2e706e51f3df70e3bda553b2.tar.gz
improve error message
Diffstat (limited to 'ext/opcache/shared_alloc_win32.c')
-rw-r--r--ext/opcache/shared_alloc_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/shared_alloc_win32.c b/ext/opcache/shared_alloc_win32.c
index 9b7bfceec1..2a86e6b814 100644
--- a/ext/opcache/shared_alloc_win32.c
+++ b/ext/opcache/shared_alloc_win32.c
@@ -152,7 +152,7 @@ static int zend_shared_alloc_reattach(size_t requested_size, char **error_in)
info.State != MEM_FREE ||
info.RegionSize < requested_size) {
err = ERROR_INVALID_ADDRESS;
- zend_win_error_message(ACCEL_LOG_FATAL, "Unable to reattach to base address", err);
+ zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region", err);
return ALLOC_FAILURE;
}