Fix typo..
This commit is contained in:
parent
b6e10f7c24
commit
dfe6facc8f
|
@ -42,7 +42,7 @@ namespace pds {
|
||||||
status = mkdir(m_outputdir.c_str(), 0777);
|
status = mkdir(m_outputdir.c_str(), 0777);
|
||||||
#endif
|
#endif
|
||||||
if(status !=0 && errno != EEXIST){
|
if(status !=0 && errno != EEXIST){
|
||||||
throw DriverException("The folder " + m_outputdir + " does not exist and we we're unable to create it.");
|
throw DriverException("The folder " + m_outputdir + " does not exist and we're unable to create it.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return std::unique_ptr<std::ostream>(new std::ofstream(m_outputdir + "/" + filename));
|
return std::unique_ptr<std::ostream>(new std::ofstream(m_outputdir + "/" + filename));
|
||||||
|
|
Loading…
Reference in New Issue