diff options
author | Rob Richards <rrichards@php.net> | 2003-07-24 13:18:40 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2003-07-24 13:18:40 +0000 |
commit | e8a87e5430dadb4b049d0d0ea0c849fd75c5e0be (patch) | |
tree | 1fb458db6264620f9debeea6f83d0f0013338b4c /ext/dom/xml_common.h | |
parent | 55097d1dcf6eee94413dc2795f923c0ef9f45d3f (diff) | |
download | php-git-e8a87e5430dadb4b049d0d0ea0c849fd75c5e0be.tar.gz |
initial xpath implementation
make dom_object generic
Diffstat (limited to 'ext/dom/xml_common.h')
-rw-r--r-- | ext/dom/xml_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/xml_common.h b/ext/dom/xml_common.h index 304635f85c..629538232b 100644 --- a/ext/dom/xml_common.h +++ b/ext/dom/xml_common.h @@ -41,7 +41,7 @@ typedef struct _node_object { typedef struct _dom_object { zend_object std; - node_ptr *ptr; + void *ptr; dom_ref_obj *document; HashTable *prop_handler; zend_object_handle handle; |