From: Michal 'vorner' Vaner Date: Mon, 7 May 2012 09:11:09 +0000 (+0200) Subject: [1903] Minor fix to the exception text X-Git-Tag: trac2351_base~226^2~159^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6abb27b31deb6c5bbbe18a97bb7e0a719ee9a9ce;p=thirdparty%2Fkea.git [1903] Minor fix to the exception text It talked about the other method. --- diff --git a/src/lib/datasrc/rbtree.h b/src/lib/datasrc/rbtree.h index fe25bee47f..5e17ee6c94 100644 --- a/src/lib/datasrc/rbtree.h +++ b/src/lib/datasrc/rbtree.h @@ -1159,7 +1159,8 @@ template const RBNode* RBTree::previousNode(RBTreeNodeChain& node_path) const { if (node_path.isEmpty()) { - isc_throw(isc::BadValue, "RBTree::nextNode is given an empty chain"); + isc_throw(isc::BadValue, + "RBTree::previousNode is given an empty chain"); } const RBNode* node(node_path.top());