diff options
Diffstat (limited to 'Zend/zend_constants.c')
-rw-r--r-- | Zend/zend_constants.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_constants.c b/Zend/zend_constants.c index 80ed43513a..8fd1021c84 100644 --- a/Zend/zend_constants.c +++ b/Zend/zend_constants.c @@ -83,9 +83,9 @@ static int clean_module_constant(zval *el, void *arg) int module_number = *(int *)arg; if (ZEND_CONSTANT_MODULE_NUMBER(c) == module_number) { - return 1; + return ZEND_HASH_APPLY_REMOVE; } else { - return 0; + return ZEND_HASH_APPLY_KEEP; } } |