diff options
author | Jani Taskinen <jani@php.net> | 2007-07-21 00:35:15 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-07-21 00:35:15 +0000 |
commit | 226c56fe76b3a63c13dc47e4f97b1862d070affc (patch) | |
tree | 1a7ca8daf5d9b3ca0d92b29611c421eab7fc26b9 /Zend/zend_execute_API.c | |
parent | bffb8c406c6810c20e14e0ab75abd1ad446cae45 (diff) | |
download | php-git-226c56fe76b3a63c13dc47e4f97b1862d070affc.tar.gz |
MFH: Fixed compiler warnings
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index b57834f395..5bbccacf33 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1375,7 +1375,7 @@ static unsigned __stdcall timeout_thread_proc(void *pArgs) } -void zend_init_timeout_thread() +void zend_init_timeout_thread(void) { timeout_thread_event = CreateEvent(NULL, FALSE, FALSE, NULL); timeout_thread_handle = CreateEvent(NULL, FALSE, FALSE, NULL); @@ -1384,7 +1384,7 @@ void zend_init_timeout_thread() } -void zend_shutdown_timeout_thread() +void zend_shutdown_timeout_thread(void) { if (!timeout_thread_initialized) { return; |