From bc7df607ab2d7771a3c2226b46598645e67e053f Mon Sep 17 00:00:00 2001 From: krakjoe Date: Tue, 26 Nov 2013 07:53:08 +0000 Subject: fix windows build build shared on windows --- phpdbg_set.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpdbg_set.c') 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; -- cgit v1.2.1