diff options
Diffstat (limited to 'ext/gettext')
| -rw-r--r-- | ext/gettext/gettext.c | 2 | ||||
| -rw-r--r-- | ext/gettext/php3_gettext.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index 69166d18df..1c9a9fefd1 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -52,7 +52,7 @@ php3_module_entry php3_gettext_module_entry = { "gettext", php3_gettext_functions, NULL, NULL, NULL, NULL, php3_info_gettext, STANDARD_MODULE_PROPERTIES }; -void php3_info_gettext(void) +void php3_info_gettext(ZEND_MODULE_INFO_FUNC_ARGS) { php3_printf("GNU gettext support active."); } diff --git a/ext/gettext/php3_gettext.h b/ext/gettext/php3_gettext.h index eb7b851b4a..b3ae0131d5 100644 --- a/ext/gettext/php3_gettext.h +++ b/ext/gettext/php3_gettext.h @@ -40,7 +40,7 @@ extern php3_module_entry php3_gettext_module_entry; #define php3_gettext_module_ptr &php3_gettext_module_entry -extern void php3_info_gettext(void); +extern void php3_info_gettext(ZEND_MODULE_INFO_FUNC_ARGS); extern void php3_textdomain(INTERNAL_FUNCTION_PARAMETERS); extern void php3_gettext(INTERNAL_FUNCTION_PARAMETERS); extern void php3_dgettext(INTERNAL_FUNCTION_PARAMETERS); |
