Added missing returns

This commit is contained in:
Robert Osfield 2008-07-24 17:38:50 +00:00
parent 79fbab4a95
commit 7cb4c46908

View File

@ -141,10 +141,12 @@ bool osgDB::outputPluginDetails(std::ostream& out, const std::string& fileName)
out<<" }"<<std::endl;
}
out<<"}"<<std::endl<<std::endl;
return true;
}
else
{
out<<"Plugin "<<fileName<<" not found."<<std::endl;
return false;
}
}