diff options
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; |