From: Andi Gutmans Date: Sat, 19 Oct 2002 20:57:15 +0000 (+0000) Subject: - Fix compile warning. X-Git-Tag: php-4.3.0pre2~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13274801e47920e7230c592e79733b0c9a048bea;p=php - Fix compile warning. --- diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 139b36c7de..50fb1a78bb 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -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