summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 966347fd3c..d1959568c1 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -266,7 +266,7 @@ typedef struct _zend_property_info {
((offset - OBJ_PROP_TO_OFFSET(0)) / sizeof(zval))
/* arg_info for internal functions */
-typedef struct _zend_internal_arg_info {
+typedef struct _zend_internal_arg_info {
const char *name;
const char *class_name;
zend_uchar type_hint;
@@ -425,7 +425,7 @@ struct _zend_execute_data {
#define ZEND_SET_CALL_INFO(call, info) do { \
Z_TYPE_INFO((call)->This) = IS_OBJECT_EX | ((info) << 24); \
} while (0)
-
+
#define ZEND_ADD_CALL_FLAG(call, info) do { \
Z_TYPE_INFO((call)->This) |= ((info) << 24); \
} while (0)
@@ -495,7 +495,7 @@ struct _zend_execute_data {
/* convert jump target back from run-time to compile-time */
# define ZEND_PASS_TWO_UNDO_JMP_TARGET(op_array, opline, node) do { \
(node).opline_num = ZEND_OFFSET_TO_OPLINE_NUM(op_array, opline, (node).jmp_offset); \
- } while (0)
+ } while (0)
#endif