diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-14 19:27:22 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-14 19:27:22 +0800 |
commit | a975c7e0fe95a94c119eb1c8e519b2357aa50dcc (patch) | |
tree | e6a353267fafcb316add10b0a60c6c07ea4d25a7 /ext/libxml | |
parent | b178992cd16a13b68844bcb60fcee9cebabe737b (diff) | |
download | php-git-a975c7e0fe95a94c119eb1c8e519b2357aa50dcc.tar.gz |
Refactor simpleXML (compilable, but incompleted)
Diffstat (limited to 'ext/libxml')
-rw-r--r-- | ext/libxml/php_libxml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/libxml/php_libxml.h b/ext/libxml/php_libxml.h index 64c6bd7874..246994ddf8 100644 --- a/ext/libxml/php_libxml.h +++ b/ext/libxml/php_libxml.h @@ -75,10 +75,10 @@ typedef struct _php_libxml_node_ptr { } php_libxml_node_ptr; typedef struct _php_libxml_node_object { - zend_object std; php_libxml_node_ptr *node; php_libxml_ref_obj *document; HashTable *properties; + zend_object std; } php_libxml_node_object; typedef void * (*php_libxml_export_node) (zval *object TSRMLS_DC); |