fix missing newline in thermo output.

This commit is contained in:
Axel Kohlmeyer 2020-06-24 21:47:27 -04:00
parent 85097df2ba
commit b0319c2e70
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}