From b0319c2e707f6f8355a99758e3cb898fe3332def Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 24 Jun 2020 21:47:27 -0400 Subject: [PATCH] fix missing newline in thermo output. --- src/thermo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thermo.cpp b/src/thermo.cpp index a74450287e..b2a9b12c86 100644 --- a/src/thermo.cpp +++ b/src/thermo.cpp @@ -315,6 +315,7 @@ void Thermo::header() std::string hdr; for (int i = 0; i < nfield; i++) hdr += keyword[i] + std::string(" "); + hdr += "\n"; if (me == 0) utils::logmesg(lmp,hdr); }