Commit e202b76c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Kill a warning

parent 858cbefa
...@@ -81,7 +81,7 @@ Node* DOMParser::processNode () ...@@ -81,7 +81,7 @@ Node* DOMParser::processNode ()
Node *subnode = NULL; Node *subnode = NULL;
while(subnode = this->processNode()) while((subnode = this->processNode()) != NULL)
node->addSubNode(subnode); node->addSubNode(subnode);
return node; return node;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment