summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-03-13 15:11:07 +0000
committerAndi Gutmans <andi@php.net>2000-03-13 15:11:07 +0000
commit712ffd4c14ad9594be6427be492eac0e56283dd3 (patch)
tree53a982192ea79170f4f81cf504cba26cf465c664 /Zend/zend_compile.h
parentea033715a9020b200997ccc3682c2658b16de14e (diff)
downloadphp-git-712ffd4c14ad9594be6427be492eac0e56283dd3.tar.gz
- Change type from int -> char
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 9c6fd27612..af5673999b 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -89,7 +89,7 @@ typedef struct _zend_brk_cont_element {
struct _zend_op_array {
- int type; /* MUST be the first element of this struct! */
+ unsigned char type; /* MUST be the first element of this struct! */
unsigned char *arg_types; /* MUST be the second element of this struct! */
char *function_name; /* MUST be the third element of this struct! */
@@ -122,7 +122,7 @@ struct _zend_op_array {
typedef struct _zend_internal_function {
- int type; /* MUST be the first element of this struct! */
+ unsigned char type; /* MUST be the first element of this struct! */
unsigned char *arg_types; /* MUST be the second element of this struct */
char *function_name; /* MUST be the third element of this struct */
@@ -132,9 +132,9 @@ typedef struct _zend_internal_function {
typedef union _zend_function {
- int type; /* MUST be the first element of this struct! */
+ unsigned char type; /* MUST be the first element of this struct! */
struct {
- int type; /* never used */
+ unsigned char type; /* never used */
unsigned char *arg_types;
char *function_name;
} common;