Skip to content

Commit 7b3ac29

Browse files
committed
Fix mismatch between macro and struct definition
1 parent 9464576 commit 7b3ac29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UPGRADING.INTERNALS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ PHP 8.0 INTERNALS UPGRADE NOTES
309309
- zend_multibyte_set_filter()
310310
- zend_lex_tstring()
311311
- _zend_module_entry module_startup_func, module_shutdown_func,
312-
request_startup_func, and request_shutdown_func function pointers
312+
request_startup_func, request_shutdown_func, and post_deactivate_func function pointers
313313
- (*zend_encoding_list_parser) typedef
314314
- (*zend_encoding_internal_encoding_setter) typedef
315315
- zend_multibyte_set_functions()

Zend/zend_modules.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ struct _zend_module_entry {
9191
#endif
9292
void (*globals_ctor)(void *global);
9393
void (*globals_dtor)(void *global);
94-
int (*post_deactivate_func)(void);
94+
zend_result (*post_deactivate_func)(void);
9595
int module_started;
9696
unsigned char type;
9797
void *handle;

0 commit comments

Comments
 (0)