Removed adding newlines to non-daily reports.

This commit is contained in:
xp986
2025-10-09 00:18:55 -05:00
parent ee5368cf19
commit 28f6c6d46c

View File

@@ -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';