mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Got rid of a compiler warning in xmlGetNodePath().
* tree.c: Got rid of a compiler warning in xmlGetNodePath().
This commit is contained in:
parent
d38c63f329
commit
43ceb1ec88
@ -1,3 +1,7 @@
|
||||
Mon Jun 12 13:06:03 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* tree.c: Got rid of a compiler warning in xmlGetNodePath().
|
||||
|
||||
Mon Jun 12 12:54:25 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* tree.c: Fixed xmlGetNodePath() to generate the node test "*"
|
||||
|
8
tree.c
8
tree.c
@ -4295,10 +4295,10 @@ xmlGetNodePath(xmlNodePtr node)
|
||||
while (tmp != NULL) {
|
||||
if ((tmp->type == XML_ELEMENT_NODE) &&
|
||||
(generic ||
|
||||
(xmlStrEqual(cur->name, tmp->name)) &&
|
||||
(xmlStrEqual(cur->name, tmp->name) &&
|
||||
((tmp->ns == cur->ns) ||
|
||||
((tmp->ns != NULL) && (cur->ns != NULL) &&
|
||||
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix))))))
|
||||
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
|
||||
occur++;
|
||||
tmp = tmp->prev;
|
||||
}
|
||||
@ -4307,10 +4307,10 @@ xmlGetNodePath(xmlNodePtr node)
|
||||
while (tmp != NULL && occur == 0) {
|
||||
if ((tmp->type == XML_ELEMENT_NODE) &&
|
||||
(generic ||
|
||||
(xmlStrEqual(cur->name, tmp->name)) &&
|
||||
(xmlStrEqual(cur->name, tmp->name) &&
|
||||
((tmp->ns == cur->ns) ||
|
||||
((tmp->ns != NULL) && (cur->ns != NULL) &&
|
||||
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix))))))
|
||||
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
|
||||
occur++;
|
||||
tmp = tmp->next;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user