fix cppcheck warning

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7739 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5e49f55d01893c44459fb85f64561f3fb786521c
Former-commit-id: 714c75530450a3e0637362a9c493f07b43130e77
This commit is contained in:
iobyte 2021-10-29 20:54:33 +00:00
parent 45c5e18d56
commit 8dc02b3a54

View file

@ -194,7 +194,7 @@ std::vector<GfModule*> GfModule::loadFromDir(const std::string& strDirPath,
continue;
// Try and load.
GfModule* pModule = GfModule::load(ossShLibPath.str().c_str());
GfModule* pModule = GfModule::load(ossShLibPath.str());
if (pModule)
vecModules.push_back(pModule);
else