From 2647432b04065cef0fe35cbafe6390f29c11223a Mon Sep 17 00:00:00 2001 From: xp986 <> Date: Thu, 9 Oct 2025 00:30:45 -0500 Subject: [PATCH] Fixed line endings. --- ReportTruncate-Robinson.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReportTruncate-Robinson.cpp b/ReportTruncate-Robinson.cpp index 661174d..1625776 100644 --- a/ReportTruncate-Robinson.cpp +++ b/ReportTruncate-Robinson.cpp @@ -142,7 +142,7 @@ int main(int argc, char* argv[]) { size_t ff_pos = l.find('\f'); if (!inserted && ff_pos != std::string::npos) { std::string modified = l.substr(0, ff_pos) + insert_line + l.substr(ff_pos); - outfile << modified << '\n'; + outfile << modified; inserted = true; } else {