diff options
author | Anatol Belski <ab@php.net> | 2014-11-13 15:45:28 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-11-13 19:57:33 +0100 |
commit | 14ccac0237853f05beb72f3b05156d0765210bfb (patch) | |
tree | ffaa8e911aa28a70a197c5bf0db1695a851f7f23 /Zend/zend_execute_API.c | |
parent | e5acd78f7a55c32b84d367975e3b123ea0c3a010 (diff) | |
download | php-git-14ccac0237853f05beb72f3b05156d0765210bfb.tar.gz |
fix datatype mismatch
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 5edc65e93e..eaa84103f9 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -51,8 +51,8 @@ static WNDCLASS wc; static HWND timeout_window; static HANDLE timeout_thread_event; static HANDLE timeout_thread_handle; -static DWORD timeout_thread_id; -static int timeout_thread_initialized=0; +static unsigned timeout_thread_id; +static volatile long timeout_thread_initialized=0; #endif #if 0&&ZEND_DEBUG |