summaryrefslogtreecommitdiff
path: root/ext/libxml
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-04-14 19:27:22 +0800
committerXinchen Hui <laruence@gmail.com>2014-04-14 19:27:22 +0800
commita975c7e0fe95a94c119eb1c8e519b2357aa50dcc (patch)
treee6a353267fafcb316add10b0a60c6c07ea4d25a7 /ext/libxml
parentb178992cd16a13b68844bcb60fcee9cebabe737b (diff)
downloadphp-git-a975c7e0fe95a94c119eb1c8e519b2357aa50dcc.tar.gz
Refactor simpleXML (compilable, but incompleted)
Diffstat (limited to 'ext/libxml')
-rw-r--r--ext/libxml/php_libxml.h2
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);