summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-12 15:34:52 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-12 15:34:52 +0000
commitb134f1d3a23136aaaaa06f1785bac0d7b894c775 (patch)
tree09ad997d910db3c7081bddbbbb699c7cb220626e
parented42a32b67257991630509ad81162d27ee2e8fe1 (diff)
Formatting fix.
-rw-r--r--src/cxml.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cxml.cc b/src/cxml.cc
index 1d98529..a9ab769 100644
--- a/src/cxml.cc
+++ b/src/cxml.cc
@@ -284,7 +284,7 @@ cxml::Document::take_root_node ()
_node = _parser->get_document()->get_root_node ();
if (!_root_name.empty() && _node->get_name() != _root_name) {
- throw cxml::Error ("unrecognised root node " + _node->get_name() + "(expecting " + _root_name + ")");
+ throw cxml::Error ("unrecognised root node " + _node->get_name() + " (expecting " + _root_name + ")");
} else if (_root_name.empty ()) {
_root_name = _node->get_name ();
}