aboutsummaryrefslogtreecommitdiffstats
path: root/xmlschemastypes.c
diff options
context:
space:
mode:
authorWilliam M. Brack <wbrack@src.gnome.org>2005-02-21 13:54:07 +0000
committerWilliam M. Brack <wbrack@src.gnome.org>2005-02-21 13:54:07 +0000
commit12d37ab63441baf9e03db70168cc1d0d6f1c2373 (patch)
tree6131d5a6d8f0aabe8585d35a1989ebe328928d8a /xmlschemastypes.c
parentbd8fb0adc02f725a1cbf7f45875a8b2426cf6deb (diff)
downloadandroid_external_libxml2-12d37ab63441baf9e03db70168cc1d0d6f1c2373.tar.gz
android_external_libxml2-12d37ab63441baf9e03db70168cc1d0d6f1c2373.tar.bz2
android_external_libxml2-12d37ab63441baf9e03db70168cc1d0d6f1c2373.zip
fixed problem when XMLLINT_INDENT was empty (bug 168033). fixed
* xmlsave.c: fixed problem when XMLLINT_INDENT was empty (bug 168033). * xpath.c: fixed compilation warning, no change to logic. * xmlschemastypes.c: fixed compilation warning, no change to logic.
Diffstat (limited to 'xmlschemastypes.c')
-rw-r--r--xmlschemastypes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlschemastypes.c b/xmlschemastypes.c
index 13cc095c..d9cc7c69 100644
--- a/xmlschemastypes.c
+++ b/xmlschemastypes.c
@@ -728,9 +728,9 @@ xmlSchemaNewNOTATIONValue(const xmlChar *name,
if (val == NULL)
return (NULL);
- val->value.qname.name = name;
+ val->value.qname.name = (xmlChar *)name;
if (ns != NULL)
- val->value.qname.uri = ns;
+ val->value.qname.uri = (xmlChar *)ns;
return(val);
}