Skip to content

Commit 9ab7e6c

Browse files
committed
fix warnings - toStringUsingIndexes
1 parent ad34998 commit 9ab7e6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crengine/src/lvtinydom.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7823,7 +7823,7 @@ lString16 ldomXPointer::toStringUsingIndexes()
78237823
while( p && p!=rootNode ) {
78247824
ldomNode * parent = p->getParentNode();
78257825
if ( !parent )
7826-
return "/" + p->isElement() ? p->getNodeName() : cs16("/text()") + path;
7826+
return "/" + (p->isElement() ? p->getNodeName() : cs16("/text()")) + path;
78277827

78287828
while( isBoxingNode(parent) )
78297829
parent = parent->getParentNode();

0 commit comments

Comments
 (0)