Fixed: Warning filePath not being a const char*

--HG--
branch : develop
hg/compatibility-develop
kervala 9 years ago
parent ebae4c2691
commit 7337ee4faa

@ -46,7 +46,7 @@ int main(int argc, char *argv[])
if (!NLMISC::CFile::fileExists(filePath))
{
printHelp(args);
nlerror("File '%s' does not exist", filePath);
nlerror("File '%s' does not exist", filePath.c_str());
return EXIT_FAILURE;
}

Loading…
Cancel
Save