From 058a7ab55cbb50ca61896096aa64fd1a409c1710 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Tue, 27 Oct 2015 17:26:36 +0100 Subject: [PATCH] fixed typo in comment introduced in eb32da13cd4f5dd0dae0e07a8f0b6c42d5678f5f --- 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 06cda75363..6d8edbca4d 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -1465,7 +1465,7 @@ static void *zend_mm_realloc_heap(zend_mm_heap *heap, void *ptr, size_t size, si #ifdef ZEND_WIN32 /* On Windows we don't have ability to extend huge block in-place. * We allocate them with 2MB size granularuty, to avoid many - * reallocatioons whenthey when they are extended by small peaces + * reallocatioons when they are extended by small peaces */ new_size = ZEND_MM_ALIGNED_SIZE_EX(size, MAX(REAL_PAGE_SIZE, ZEND_MM_CHUNK_SIZE)); #else -- 2.50.1