summaryrefslogtreecommitdiff
path: root/Zend/zend_gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_gc.c')
-rw-r--r--Zend/zend_gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c
index 3900837a7d..69a24d44be 100644
--- a/Zend/zend_gc.c
+++ b/Zend/zend_gc.c
@@ -1444,9 +1444,9 @@ ZEND_API int zend_gc_collect_cycles(void)
ZEND_API void zend_gc_get_status(zend_gc_status *status)
{
- status->gc_runs = GC_G(gc_runs);
+ status->runs = GC_G(gc_runs);
status->collected = GC_G(collected);
- status->gc_threshold = GC_G(gc_threshold);
+ status->threshold = GC_G(gc_threshold);
}
/*