Fixed warning message

This commit is contained in:
Robert Osfield
2016-05-31 10:32:43 +01:00
parent 01f1277203
commit 3bb8b73b8c

View File

@@ -1416,7 +1416,7 @@ void DataOutputStream::writeNode(const osg::Node* node)
{
if (typeid(node)!=typeid(osg::Node))
{
OSG_WARN<<"Unknown node in Group::write(), className()="<<node->className()<<std::endl;
OSG_WARN<<"Unknown node in DataOutputStream::writeNode(..), className()="<<node->className()<<std::endl;
}
((ive::Node*)(node))->write(this);