mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-26 03:00:17 -06:00
Merge pull request #1914 from atgeirr/fixup-unknown-params
Fix typo, indentation and return in unknown-parameter situation.
This commit is contained in:
commit
f6ea98a0cb
@ -236,7 +236,7 @@ namespace Opm
|
||||
{
|
||||
if ( output_cout_ )
|
||||
{
|
||||
std::string msg = "Aborting simulation due unknown "
|
||||
std::string msg = "Aborting simulation due to unknown "
|
||||
"parameters. Please query \"flow --help\" for "
|
||||
"supported command line parameters.";
|
||||
if (OpmLog::hasBackend("STREAMLOG"))
|
||||
@ -244,14 +244,14 @@ namespace Opm
|
||||
OpmLog::error(msg);
|
||||
}
|
||||
else {
|
||||
std::cerr << msg << std::endl;
|
||||
std::cerr << msg << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
#if HAVE_MPI
|
||||
MPI_Finalize();
|
||||
#endif
|
||||
exit(EXIT_FAILURE);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
runDiagnostics();
|
||||
createSimulator();
|
||||
|
Loading…
Reference in New Issue
Block a user