diff --git a/ChangeLog b/ChangeLog index 6059337e8c..ec92600e18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-12 Stefan Kost + + * tests/examples/xml/createxml.c: (object_saved): + gcc 4 fixes + 2005-12-12 Stefan Kost * tests/Makefile.am: diff --git a/tests/examples/xml/createxml.c b/tests/examples/xml/createxml.c index d1426e2d08..3917c29ebc 100644 --- a/tests/examples/xml/createxml.c +++ b/tests/examples/xml/createxml.c @@ -11,16 +11,17 @@ object_saved (GstObject * object, xmlNodePtr parent, gpointer data) /* first see if the namespace is already known */ ns = xmlSearchNsByHref (parent->doc, parent, - "http://gstreamer.net/gst-test/1.0/"); + (xmlChar *) "http://gstreamer.net/gst-test/1.0/"); if (ns == NULL) { xmlNodePtr root = xmlDocGetRootElement (parent->doc); /* add namespace to root node */ - ns = xmlNewNs (root, "http://gstreamer.net/gst-test/1.0/", "test"); + ns = xmlNewNs (root, (xmlChar *) "http://gstreamer.net/gst-test/1.0/", + (xmlChar *) "test"); } - child = xmlNewChild (parent, ns, "comment", NULL); + child = xmlNewChild (parent, ns, (xmlChar *) "comment", NULL); - xmlNewChild (child, NULL, "text", (gchar *) data); + xmlNewChild (child, NULL, (xmlChar *) "text", (gchar *) data); } int