Add a final newline to "No crash reports!"

This commit is contained in:
Kat
2025-02-05 08:22:58 +00:00
committed by GitHub
parent f0d276062b
commit 47e50abe24

View File

@ -53,7 +53,7 @@ pub fn run(alloc_gpa: Allocator) !u8 {
// print a message, otherwise we do nothing.
if (reports.items.len == 0) {
if (std.posix.isatty(stdout.handle)) {
try stdout.writeAll("No crash reports! 👻");
try stdout.writeAll("No crash reports! 👻\n");
}
return 0;
}