Fix mismatch between macro and struct definition

This commit is contained in:
George Peter Banyard 2020-09-03 13:05:50 +02:00
parent 9464576f29
commit 7b3ac296a5
2 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ PHP 8.0 INTERNALS UPGRADE NOTES
- zend_multibyte_set_filter()
- zend_lex_tstring()
- _zend_module_entry module_startup_func, module_shutdown_func,
request_startup_func, and request_shutdown_func function pointers
request_startup_func, request_shutdown_func, and post_deactivate_func function pointers
- (*zend_encoding_list_parser) typedef
- (*zend_encoding_internal_encoding_setter) typedef
- zend_multibyte_set_functions()

View File

@ -91,7 +91,7 @@ struct _zend_module_entry {
#endif
void (*globals_ctor)(void *global);
void (*globals_dtor)(void *global);
int (*post_deactivate_func)(void);
zend_result (*post_deactivate_func)(void);
int module_started;
unsigned char type;
void *handle;