]> granicus.if.org Git - php/commitdiff
- Fix compile warning.
authorAndi Gutmans <andi@php.net>
Sat, 19 Oct 2002 20:57:15 +0000 (20:57 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 19 Oct 2002 20:57:15 +0000 (20:57 +0000)
Zend/zend_compile.h

index 139b36c7def36e5479fa8e2f7b3bc1208ef55d6c..50fb1a78bb82caeb6d55a1abe08bb078d57546eb 100644 (file)
@@ -192,7 +192,7 @@ typedef struct _zend_file_handle {
 
 union _temp_variable;
 
-typedef struct _zend_execute_data {
+struct _zend_execute_data {
        struct _zend_op *opline;
        zend_function_state function_state;
        zend_function *fbc; /* Function Being Called */
@@ -203,7 +203,7 @@ typedef struct _zend_execute_data {
        zend_bool original_in_execution;
        zend_class_entry *calling_scope;
        struct _zend_execute_data *prev_execute_data;
-} zend_execute_data;
+};
 
 #define EX(element) execute_data.element