Fixed typo in error message.

This commit is contained in:
Ryan Latture 2016-05-04 16:44:38 -07:00
parent 697cbfadff
commit 535daa9b49
1 changed files with 1 additions and 1 deletions

View File

@ -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];