diff options
Diffstat (limited to 'ext/aspell/aspell.c')
-rw-r--r-- | ext/aspell/aspell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c index 9d168afafc..c96213b381 100644 --- a/ext/aspell/aspell.c +++ b/ext/aspell/aspell.c @@ -46,13 +46,13 @@ function_entry aspell_functions[] = { static int le_aspell; -php3_module_entry aspell_module_entry = { +zend_module_entry aspell_module_entry = { "Aspell", aspell_functions, PHP_MINIT(aspell), NULL, NULL, NULL, PHP_MINFO(aspell), STANDARD_MODULE_PROPERTIES }; #if COMPILE_DL -DLEXPORT php3_module_entry *get_module(void) { return &aspell_module_entry; } +DLEXPORT zend_module_entry *get_module(void) { return &aspell_module_entry; } #endif PHP_MINIT_FUNCTION(aspell) |