Skip to content

Commit 9e7295c

Browse files
committed
Style fix
1 parent a543f95 commit 9e7295c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/zend_fibers.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ typedef zend_fiber_context *(*zend_fiber_coroutine)(zend_fiber_context *context)
7373
/* Defined as a macro to allow anonymous embedding. */
7474
#define ZEND_FIBER_CONTEXT_FIELDS \
7575
void *handle; \
76-
zend_fiber_context *caller; \
76+
zend_fiber_context *caller; \
7777
zend_fiber_coroutine function; \
7878
zend_fiber_stack stack; \
7979
zend_fiber_status status; \
@@ -87,8 +87,8 @@ struct _zend_fiber_context {
8787
/* Zend VM state that needs to be captured / restored during fiber context switch. */
8888
typedef struct _zend_fiber_vm_state {
8989
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;
9292
size_t vm_stack_page_size;
9393
zend_execute_data *current_execute_data;
9494
int error_reporting;

0 commit comments

Comments
 (0)