summaryrefslogtreecommitdiff
path: root/Zend/zend.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-07-09 17:44:41 +0000
committerZeev Suraski <zeev@php.net>1999-07-09 17:44:41 +0000
commit5f62c347c73300d5903a110c863be45b3b96c9f8 (patch)
tree352a88767f9131214ee23b909e0bb7ac29ea31f0 /Zend/zend.h
parent3a9cb0220ce35e82065e92c4477b81373ab3e234 (diff)
downloadphp-git-5f62c347c73300d5903a110c863be45b3b96c9f8.tar.gz
Step 2:
Rename is_ref to EA
Diffstat (limited to 'Zend/zend.h')
-rw-r--r--Zend/zend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 9e377b859a..571802fbf0 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -91,7 +91,7 @@ struct _zval_struct {
/* Variable information */
zvalue_value value; /* value */
unsigned char type; /* active type */
- unsigned char is_ref;
+ unsigned char EA;
short refcount;
};
@@ -175,7 +175,7 @@ typedef struct _zend_utility_values {
#define MAKE_STD_ZVAL(zv) \
zv = (zval *) emalloc(sizeof(zval)); \
zv->refcount = 1; \
- zv->is_ref = 0;
+ zv->EA = 0;
int zend_startup(zend_utility_functions *utility_functions, char **extensions);