This commit is contained in:
Jean-Francois Dockes 2020-05-30 15:56:40 +02:00
parent 560041cab9
commit d223d4e350

View File

@ -869,7 +869,7 @@ bool path_open(const std::string& path, int mode, std::fstream& outstream)
outstream.open(wpath, std::ios_base::openmode(mode));
if (!outstream.is_open()) {
LOGERR("path_open("<< path << ", "<< mode <<") errno " << errno <<"\n");
return false;
return false;
}
return true;
#else