From 28f6c6d46c2cbfa24fe748909e6e8d4d75ca6cc3 Mon Sep 17 00:00:00 2001 From: xp986 <> Date: Thu, 9 Oct 2025 00:18:55 -0500 Subject: [PATCH] Removed adding newlines to non-daily reports. --- ReportTruncate-Robinson.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ReportTruncate-Robinson.cpp b/ReportTruncate-Robinson.cpp index 16ef265..661174d 100644 --- a/ReportTruncate-Robinson.cpp +++ b/ReportTruncate-Robinson.cpp @@ -146,14 +146,10 @@ int main(int argc, char* argv[]) { inserted = true; } else { - outfile << l << '\n'; + outfile << l; } } - if (!inserted) { - outfile << insert_line << '\n'; - } - if (inserted) { // === 6) Append a form feed to the very end of the truncated document === outfile << '\f';