From 3e391e064ff359ae1e354d11b613a9f454e3a6a8 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Thu, 9 Jan 2014 14:57:18 +0100 Subject: [PATCH] XMLTreeNode::AddNode: fix logic error (in unused branch) Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/42bc6f3081ffd2e73ec69b1432d1cfd54f354bf6 Author: Stefan Seyfried Date: 2014-01-09 (Thu, 09 Jan 2014) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- lib/xmltree/xmltree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmltree/xmltree.cpp b/lib/xmltree/xmltree.cpp index e487df5a8..acb1502eb 100644 --- a/lib/xmltree/xmltree.cpp +++ b/lib/xmltree/xmltree.cpp @@ -246,7 +246,7 @@ void XMLTreeNode::AddNode(XMLTreeNode *node, addmode mode) { case ADD_NEIGHBOUR: n=this; - + break; case ADD_CHILD: n=child; }