Add a final newline to "No crash reports!" (#5583)

This commit is contained in:
Mitchell Hashimoto
2025-02-05 10:35:28 -08:00
committed by GitHub

View File

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