]> git.pld-linux.org Git - packages/php.git/blob - php-ZVAL.patch
- don't use pcre functions in standard/aggregation functions if building pcre extensi...
[packages/php.git] / php-ZVAL.patch
1 diff -u -r1.87 zend_API.h
2 --- php-4.0.6.orig/Zend/zend_API.h      2001/04/19 17:51:23
3 +++ php-4.0.6/Zend/zend_API.h   2001/08/24 13:18:51
4 @@ -268,8 +268,8 @@
5                 (z)->type = IS_STRING;              \
6         }
7  
8 -#define ZVAL_FALSE  { (z)->value.lval = 0;  (z)->type = IS_BOOL; }
9 -#define ZVAL_TRUE   { (z)->value.lval = 1;  (z)->type = IS_BOOL; }
10 +#define ZVAL_FALSE(z)  { (z)->value.lval = 0;  (z)->type = IS_BOOL; }
11 +#define ZVAL_TRUE(z)   { (z)->value.lval = 1;  (z)->type = IS_BOOL; }
12  
13  #define RETVAL_RESOURCE(l) {                   \
14                 return_value->type = IS_RESOURCE;\
This page took 0.024563 seconds and 3 git commands to generate.