File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ typedef zend_fiber_context *(*zend_fiber_coroutine)(zend_fiber_context *context)
73
73
/* Defined as a macro to allow anonymous embedding. */
74
74
#define ZEND_FIBER_CONTEXT_FIELDS \
75
75
void *handle; \
76
- zend_fiber_context *caller; \
76
+ zend_fiber_context *caller; \
77
77
zend_fiber_coroutine function; \
78
78
zend_fiber_stack stack; \
79
79
zend_fiber_status status; \
@@ -87,8 +87,8 @@ struct _zend_fiber_context {
87
87
/* Zend VM state that needs to be captured / restored during fiber context switch. */
88
88
typedef struct _zend_fiber_vm_state {
89
89
zend_vm_stack vm_stack ;
90
- zval * vm_stack_top ;
91
- zval * vm_stack_end ;
90
+ zval * vm_stack_top ;
91
+ zval * vm_stack_end ;
92
92
size_t vm_stack_page_size ;
93
93
zend_execute_data * current_execute_data ;
94
94
int error_reporting ;
You can’t perform that action at this time.
0 commit comments