]> granicus.if.org Git - php/commitdiff
- Fix build
authorJohannes Schlüter <johannes@php.net>
Tue, 20 Nov 2007 21:45:52 +0000 (21:45 +0000)
committerJohannes Schlüter <johannes@php.net>
Tue, 20 Nov 2007 21:45:52 +0000 (21:45 +0000)
Zend/zend_constants.c

index 75ba269e4942b072a4305ffbffeb6a664e016480..fa269d5cdaebc66043f13ac68570bd399c973268 100644 (file)
@@ -162,7 +162,7 @@ void zend_register_standard_constants(TSRMLS_D) /* {{{ */
                c.name.s = zend_strndup(ZEND_STRL("ZEND_DEBUG_BUILD"));
                c.name_len = sizeof("ZEND_DEBUG_BUILD");
                Z_LVAL(c.value) = ZEND_DEBUG;
-               z_TYPE(c.value) = IS_BOOL;
+               Z_TYPE(c.value) = IS_BOOL;
                zend_register_constant(&c TSRMLS_CC);
        }
 }