diff options
author | Xinchen Hui <laruence@gmail.com> | 2017-04-10 14:48:31 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2017-04-10 14:48:31 +0800 |
commit | 9398f15efd58899df21f5e0cf032b8881fe71f3f (patch) | |
tree | 21dcdcef221ada563984830aba8b0d799d268125 /sapi/phpdbg/phpdbg.h | |
parent | 65d77812fcc0275aed58fd74b8d17d09a7e21ef2 (diff) | |
download | php-git-9398f15efd58899df21f5e0cf032b8881fe71f3f.tar.gz |
Fixed condition check
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r-- | sapi/phpdbg/phpdbg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index 2a22251219..ef3b017b6d 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -48,7 +48,7 @@ #include "zend_signal.h" #if !defined(_WIN32) && !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H) # include <signal.h> -#elif PHP_WIN32 +#elif defined(PHP_WIN32) # include "win32/signal.h" #endif #include "SAPI.h" |