]> granicus.if.org Git - php/commitdiff
fixed another comment typo
authorMarkus Staab <maggus.staab@googlemail.com>
Tue, 27 Oct 2015 16:27:57 +0000 (17:27 +0100)
committerMarkus Staab <maggus.staab@googlemail.com>
Tue, 27 Oct 2015 16:27:57 +0000 (17:27 +0100)
Zend/zend_alloc.c

index 6d8edbca4de91cfe684be36aaf7bcb4dfb38bc22..3057eebb1d5750c013b360d3eb9720f77308f184 100644 (file)
@@ -1733,7 +1733,7 @@ static void *zend_mm_alloc_huge(zend_mm_heap *heap, size_t size ZEND_FILE_LINE_D
 #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
         */
        size_t new_size = ZEND_MM_ALIGNED_SIZE_EX(size, MAX(REAL_PAGE_SIZE, ZEND_MM_CHUNK_SIZE));
 #else