Fixed warning message.

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15178 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2015-11-09 15:13:51 +00:00
parent 15f866a322
commit 0401ab4ce7

View File

@@ -262,7 +262,8 @@ bool Geometry::addPrimitiveSet(PrimitiveSet* primitiveset)
dirtyBound();
return true;
}
OSG_WARN<<"Warning: invalid index i or primitiveset passed to osg::Geometry::addPrimitiveSet(i,primitiveset), ignoring call."<<std::endl;
OSG_WARN<<"Warning: invalid primitiveset passed to osg::Geometry::addPrimitiveSet(i, primitiveset), ignoring call."<<std::endl;
return false;
}