summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-08-31 11:53:57 +0000
committerDmitry Stogov <dmitry@php.net>2006-08-31 11:53:57 +0000
commit54123daa8de132b328ffffdd9195b70dcf2ae5a2 (patch)
treeadeae7c281354c7ce077c2a367f0081262d8669c
parentc4e9ee25860d707c20eead453356ed09e13a649d (diff)
downloadphp-git-54123daa8de132b328ffffdd9195b70dcf2ae5a2.tar.gz
Show name of storage layer in case of initialization fault.
-rw-r--r--Zend/zend_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index a5f45462cc..d2bb14cb28 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -586,7 +586,7 @@ ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers,
storage = handlers->init(params);
if (!storage) {
- fprintf(stderr, "Cannot initialize zend_mm storage\n");
+ fprintf(stderr, "Cannot initialize zend_mm storage [%s]\n", handlers->name);
exit(255);
}
storage->handlers = handlers;