fix error message

This commit is contained in:
David Rose 2001-07-26 17:34:59 +00:00
parent 414094d202
commit 8c22cad702

View File

@ -628,14 +628,14 @@ attach() {
if (parent_connection == (NodeConnection *)NULL) {
graph_cat.error()
<< "Attempt to attach " << _parent << " simultaneously to more than "
<< "Attempt to attach " << *_parent << " simultaneously to more than "
<< max_node_graphs << " different graph types.\n";
nassertv(false);
}
if (child_connection == (NodeConnection *)NULL) {
graph_cat.error()
<< "Attempt to attach " << _child << " simultaneously to more than "
<< "Attempt to attach " << *_child << " simultaneously to more than "
<< max_node_graphs << " different graph types.\n";
nassertv(false);
}