mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-18 13:21:40 +00:00
Fixed: Warning filePath not being a const char*
This commit is contained in:
parent
7fd1687a4d
commit
a40bd7a9d7
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ int main(int argc, char *argv[])
|
||||||
if (!NLMISC::CFile::fileExists(filePath))
|
if (!NLMISC::CFile::fileExists(filePath))
|
||||||
{
|
{
|
||||||
printHelp(args);
|
printHelp(args);
|
||||||
nlerror("File '%s' does not exist", filePath);
|
nlerror("File '%s' does not exist", filePath.c_str());
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue