diff options
author | Rob Richards <rrichards@php.net> | 2006-08-07 10:09:52 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2006-08-07 10:09:52 +0000 |
commit | 65ae8773b5861facff38502c3f6de33f0b6190b4 (patch) | |
tree | 345d2b47666080635e2f45a02e3e78b2980234d2 /ext/simplexml/php_simplexml.h | |
parent | 4b77e7f2f7a8d536c0a54ddb254b5f005b2a1ff8 (diff) | |
download | php-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.h | 4 |
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; |