diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 07:53:08 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 07:53:08 +0000 |
commit | bc7df607ab2d7771a3c2226b46598645e67e053f (patch) | |
tree | 868cec8fa62aaa3a4f10d84ba7bb191ff90d91b7 /phpdbg_set.c | |
parent | 2942caff29fc685a153cb8bf5f73f8a98ea6e2b1 (diff) | |
download | php-git-bc7df607ab2d7771a3c2226b46598645e67e053f.tar.gz |
fix windows build
build shared on windows
Diffstat (limited to 'phpdbg_set.c')
-rw-r--r-- | phpdbg_set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_set.c b/phpdbg_set.c index f3265604d0..a0f5e74a70 100644 --- a/phpdbg_set.c +++ b/phpdbg_set.c @@ -53,7 +53,7 @@ PHPDBG_SET(break) /* {{{ */ if (strncasecmp(param->str, PHPDBG_STRL("on")) == 0) { PHPDBG_G(flags) |= PHPDBG_IS_BP_ENABLED; } else if (strncasecmp(param->str, PHPDBG_STRL("off")) == 0) { - PHPDBG_G(flags) ^= PHPDBG_IS_BP_ENABLED; + PHPDBG_G(flags) &= ~PHPDBG_IS_BP_ENABLED; } break; |