summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2002-04-30 14:45:50 +0000
committerStanislav Malyshev <stas@php.net>2002-04-30 14:45:50 +0000
commitf42bb6cfe435047eeab7f1893c95605ac4f3df0f (patch)
tree001a7f668763f0e47077d3a1f277b553cf242194
parent28e1120978ed24c1dd1bd25e70a4713add0a38ea (diff)
downloadphp-git-f42bb6cfe435047eeab7f1893c95605ac4f3df0f.tar.gz
Fix ZE1 build
-rw-r--r--ext/standard/aggregation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/aggregation.c b/ext/standard/aggregation.c
index b45d2b8d9b..cea8c8138d 100644
--- a/ext/standard/aggregation.c
+++ b/ext/standard/aggregation.c
@@ -409,7 +409,7 @@ static void aggregate(INTERNAL_FUNCTION_PARAMETERS, int aggr_what, int aggr_type
* time.
*/
/* OBJECT FIXME!! won't work with non-standard objects */
- Z_OBJ_P(obj)->ce = new_ce;
+ (Z_OBJ_P(obj))->ce = new_ce;
aggr_info_new.new_ce = new_ce;
MAKE_STD_ZVAL(aggr_info_new.aggr_members);
array_init(aggr_info_new.aggr_members);
@@ -630,7 +630,7 @@ PHP_FUNCTION(deaggregate)
}
/* OBJECT FIXME!! won't work with non-standard objects */
- Z_OBJ_P(obj)->ce = orig_ce;
+ (Z_OBJ_P(obj))->ce = orig_ce;
zend_hash_index_del(BG(aggregation_table), (long)obj);
}
}