diff --git a/Applications/Utils/ModelPreparation/PartitionMesh/PartitionMesh.cpp b/Applications/Utils/ModelPreparation/PartitionMesh/PartitionMesh.cpp index 04ef2e9a5f8276fa7c4bd79c0e9a4b528fc0dd05..06f65f8cc31942acc0af052053126a9bc07cfa9e 100644 --- a/Applications/Utils/ModelPreparation/PartitionMesh/PartitionMesh.cpp +++ b/Applications/Utils/ModelPreparation/PartitionMesh/PartitionMesh.cpp @@ -133,7 +133,7 @@ int main(int argc, char* argv[]) std::ofstream os(name); if (!os) OGS_FATAL("Couldn't open file '%s' for writing.", - name.c_str()) + name.c_str()); for (std::size_t n(0); n < number; ++n) os << "0\n"; }; diff --git a/MaterialLib/Adsorption/ReactionInert.h b/MaterialLib/Adsorption/ReactionInert.h index 3e3a05052c1a970f99b3d03ee18b793342b0d5a2..f6cd26302fb5a4ed9e8455e57c1cfdb8257f8ec6 100644 --- a/MaterialLib/Adsorption/ReactionInert.h +++ b/MaterialLib/Adsorption/ReactionInert.h @@ -28,7 +28,7 @@ public: double getReactionRate(const double /*p_Ads*/, const double /*T_Ads*/, const double /*M_Ads*/, const double /*loading*/) const override { - OGS_FATAL("Method getReactionRate() should never be called directly") + OGS_FATAL("Method getReactionRate() should never be called directly"); } }; diff --git a/MaterialLib/PorousMedium/Permeability/createPermeabilityModel.cpp b/MaterialLib/PorousMedium/Permeability/createPermeabilityModel.cpp index 8ffe381b6b3aaabfcde23948b14757dd4bf7dd09..3927950dd2bebd1f454aa6c3ce3530c97ad14dab 100644 --- a/MaterialLib/PorousMedium/Permeability/createPermeabilityModel.cpp +++ b/MaterialLib/PorousMedium/Permeability/createPermeabilityModel.cpp @@ -46,7 +46,7 @@ Eigen::MatrixXd createPermeabilityModel(BaseLib::ConfigTree const& config) default: { OGS_FATAL( - "Number of values for permeability tensor must be 1, 4 or 9.") + "Number of values for permeability tensor must be 1, 4 or 9."); } }