From 586f2c00b026945edbb5173dcb9ce9cff737e045 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 7 Jun 2020 10:13:35 -0400 Subject: [PATCH] add missing linefeed character --- src/force.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/force.cpp b/src/force.cpp index 2827c43268..840d7e31ca 100644 --- a/src/force.cpp +++ b/src/force.cpp @@ -1019,7 +1019,8 @@ FILE *Force::open_potential(const char *name) date = utils::get_potential_date(filepath, "potential"); if(!date.empty()) { - utils::logmesg(lmp, fmt::format("Reading potential file {} with DATE: {}", name, date)); + utils::logmesg(lmp, fmt::format("Reading potential file {} " + "with DATE: {}\n", name, date)); } return fopen(filepath.c_str(), "r"); }