Skip to content

Commit

Permalink
- Fix compile problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Gutmans committed Aug 19, 2001
1 parent 4340c57 commit 718f323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Zend/zend.h
Expand Up @@ -191,14 +191,14 @@ typedef void (*del_ref_t)(zend_object_handle handle);
typedef void (*delete_obj_t)(zend_object_handle handle);
typedef zend_object_value (*clone_obj_t)(zend_object_handle handle);

typedef struct _zend_object_handlers {
struct _zend_object_handlers {
get_address_t get_address;
get_property_address_t get_property_address;
add_ref_t add_ref;
del_ref_t del_ref;
delete_obj_t delete_obj;
clone_obj_t clone_obj;
} zend_object_handlers;
};

#include "zend_objects.h"

Expand Down

0 comments on commit 718f323

Please sign in to comment.