com php-src: Fixed typo: Zend/zend_gc.c
[email protected] (Xinchen Hui)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: db7c0badd477244e3b86c1624bd506651bdea0ba Author: Xinchen Hui <[email protected]> Sat, 11 Feb 2017 00:01:09 +0800 Parents: 185304a61e08c07228e718139ef5284a7021bbbd Branches: PHP-7.0 PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=db7c0badd477244e3b86c1624bd506651bdea0ba Log: Fixed typo Changed paths: M Zend/zend_gc.c Diff: diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index 30cec4b..dcfbcfb 100644 --- a/Zend/zend_gc.c +++ b/Zend/zend_gc.c @@ -37,9 +37,9 @@ #define GC_NUM_ADDITIONAL_ENTRIES \ ((4096 - ZEND_MM_OVERHEAD - sizeof(void*) * 2) / sizeof(gc_root_buffer)) -typedef struct _gc_addtional_bufer gc_additional_buffer; +typedef struct _gc_additional_bufer gc_additional_buffer; -struct _gc_addtional_bufer { +struct _gc_additional_bufer { uint32_t used; gc_additional_buffer *next; gc_root_buffer buf[GC_NUM_ADDITIONAL_ENTRIES];