From 447cc0eb15ee76fc47e8052258eb04942aed8ab8 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 31 Aug 2006 13:00:12 +0000 Subject: [PATCH] Show name of storage layer in case of initialization fault --- Zend/zend_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 23a925233d..840387548c 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; -- 2.50.1