From 535daa9b494ded95e5eeadbc4893730af3dcc6be Mon Sep 17 00:00:00 2001 From: Ryan Latture Date: Wed, 4 May 2016 16:44:38 -0700 Subject: [PATCH] Fixed typo in error message. --- src/setup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.cpp b/src/setup.cpp index 90f65b2..525f31f 100644 --- a/src/setup.cpp +++ b/src/setup.cpp @@ -64,7 +64,7 @@ namespace fea { if (!config_file_ptr) { throw std::runtime_error( - (boost::format("Cannot opwn configuration input file %s.") % config_filename).str() + (boost::format("Cannot open configuration input file %s.") % config_filename).str() ); } char readBuffer[65536];