From: Carl Hetherington Date: Mon, 12 Jan 2015 15:34:52 +0000 (+0000) Subject: Formatting fix. X-Git-Tag: v0.12.0~11 X-Git-Url: https://main.carlh.net/gitweb/?p=libcxml.git;a=commitdiff_plain;h=b134f1d3a23136aaaaa06f1785bac0d7b894c775;ds=sidebyside Formatting fix. --- 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 (); }