diff options
author | Anatol Belski <ab@php.net> | 2016-11-26 15:18:42 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-11-26 17:29:01 +0100 |
commit | b204b3abd19f86bd9217866189cdebcc6abc0d95 (patch) | |
tree | 324e3c86634583ef7d58bc0f3e19dfbdeb85773c /main/php_main.h | |
parent | 1b7e014d1ce21b9eb6021111c1005d047b5b9a1b (diff) | |
download | php-git-b204b3abd19f86bd9217866189cdebcc6abc0d95.tar.gz |
further normalizations, uint vs uint32_t
fix merge mistake
yet one more replacement run
Diffstat (limited to 'main/php_main.h')
-rw-r--r-- | main/php_main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_main.h b/main/php_main.h index 69f5b3c202..51114d0241 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -30,7 +30,7 @@ BEGIN_EXTERN_C() PHPAPI int php_request_startup(void); PHPAPI void php_request_shutdown(void *dummy); PHPAPI void php_request_shutdown_for_exec(void *dummy); -PHPAPI int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_modules, uint num_additional_modules); +PHPAPI int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_modules, uint32_t num_additional_modules); PHPAPI void php_module_shutdown(void); PHPAPI void php_module_shutdown_for_exec(void); PHPAPI int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals); |