mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix type
This commit is contained in:
parent
d95c29d7f6
commit
2cd551ffec
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ struct _zend_vm_stack {
|
|||
} while (0)
|
||||
|
||||
static inline zend_vm_stack zend_vm_stack_new_page(int count) {
|
||||
zend_vm_stack page = emalloc(sizeof(*page)+sizeof(page->elements[0])*(count-1));
|
||||
zend_vm_stack page = (zend_vm_stack)emalloc(sizeof(*page)+sizeof(page->elements[0])*(count-1));
|
||||
|
||||
page->top = page->elements;
|
||||
page->end = page->elements + count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue