Skip to content

Commit 718f323

Browse files
author
Andi Gutmans
committed
- Fix compile problem
1 parent 4340c57 commit 718f323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,14 @@ typedef void (*del_ref_t)(zend_object_handle handle);
191191
typedef void (*delete_obj_t)(zend_object_handle handle);
192192
typedef zend_object_value (*clone_obj_t)(zend_object_handle handle);
193193

194-
typedef struct _zend_object_handlers {
194+
struct _zend_object_handlers {
195195
get_address_t get_address;
196196
get_property_address_t get_property_address;
197197
add_ref_t add_ref;
198198
del_ref_t del_ref;
199199
delete_obj_t delete_obj;
200200
clone_obj_t clone_obj;
201-
} zend_object_handlers;
201+
};
202202

203203
#include "zend_objects.h"
204204

0 commit comments

Comments
 (0)