Fix typo..

This commit is contained in:
Thomas Avé 2017-01-05 23:13:24 +01:00
parent b6e10f7c24
commit dfe6facc8f
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace pds {
status = mkdir(m_outputdir.c_str(), 0777);
#endif
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));