summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 ();
}