From: Markus Staab Date: Tue, 27 Oct 2015 16:26:36 +0000 (+0100) Subject: fixed typo in comment X-Git-Tag: php-7.1.0alpha1~845^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=058a7ab55cbb50ca61896096aa64fd1a409c1710;p=php fixed typo in comment introduced in eb32da13cd4f5dd0dae0e07a8f0b6c42d5678f5f --- 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