Compilation fix

This commit is contained in:
Nekotekina 2014-07-13 02:56:52 +04:00
parent 21aedb518c
commit 2c7de61027

View File

@ -194,7 +194,7 @@ std::string rGetCwd()
bool rMkdir(const std::string &dir)
{
return !_mkdir(dir.c_str());
return !mkdir(dir.c_str());
}
bool rMkpath(const std::string& path)