summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-01-04 13:22:58 +0000
committerAndi Gutmans <andi@php.net>2000-01-04 13:22:58 +0000
commitbdefd5da154ec567941c71d71c11b385bdd95182 (patch)
treee23526736fce2f15613cb13669ec948eca5d41f6 /Zend/zend.c
parent402a9db2fef374ede7c7d4ed169aaa5ccdf2a891 (diff)
downloadphp-git-bdefd5da154ec567941c71d71c11b385bdd95182.tar.gz
- Change IS_UNSET -> IS_NULL
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index 5297d8ef9a..1e83925874 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -117,7 +117,7 @@ ZEND_API void zend_make_printable_zval(zval *expr, zval *expr_copy, int *use_cop
return;
}
switch (expr->type) {
- case IS_UNSET:
+ case IS_NULL:
expr_copy->value.str.len = 0;
expr_copy->value.str.val = empty_string;
case IS_BOOL:
@@ -339,7 +339,7 @@ int zend_startup(zend_utility_functions *utility_functions, char **extensions)
/* This zval can be used to initialize allocate zval's to an uninit'ed value */
zval_used_for_init.is_ref = 0;
zval_used_for_init.refcount = 1;
- zval_used_for_init.type = IS_UNSET;
+ zval_used_for_init.type = IS_NULL;
#ifdef ZTS
global_constants_table = NULL;