summaryrefslogtreecommitdiff
path: root/ext/simplexml/php_simplexml.h
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2006-08-07 10:09:52 +0000
committerRob Richards <rrichards@php.net>2006-08-07 10:09:52 +0000
commit65ae8773b5861facff38502c3f6de33f0b6190b4 (patch)
tree345d2b47666080635e2f45a02e3e78b2980234d2 /ext/simplexml/php_simplexml.h
parent4b77e7f2f7a8d536c0a54ddb254b5f005b2a1ff8 (diff)
downloadphp-git-65ae8773b5861facff38502c3f6de33f0b6190b4.tar.gz
asXML() needs to return bool when serializing doc and filename is passed in
do not copy the content of the outputbuffer twice in asXML() fix compiler warnings
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r--ext/simplexml/php_simplexml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h
index c52ab9af06..dee6bdc1fe 100644
--- a/ext/simplexml/php_simplexml.h
+++ b/ext/simplexml/php_simplexml.h
@@ -67,8 +67,8 @@ typedef struct {
HashTable *properties;
xmlXPathContextPtr xpath;
struct {
- char *name;
- char *nsprefix;
+ xmlChar *name;
+ xmlChar *nsprefix;
int isprefix;
SXE_ITER type;
zval *data;