From dfe6facc8f3c872460b2ef8a59addb7d9c091a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Thu, 5 Jan 2017 23:13:24 +0100 Subject: [PATCH] Fix typo.. --- src/driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver.cpp b/src/driver.cpp index e7a4d99..50aeb12 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -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(new std::ofstream(m_outputdir + "/" + filename));