From 47e50abe24de72205be30c0e0bdd2de27c1496a2 Mon Sep 17 00:00:00 2001 From: Kat <65649991+00-kat@users.noreply.github.com> Date: Wed, 5 Feb 2025 08:22:58 +0000 Subject: [PATCH] Add a final newline to "No crash reports!" --- src/cli/crash_report.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/crash_report.zig b/src/cli/crash_report.zig index dd5fe99cc..ff8509797 100644 --- a/src/cli/crash_report.zig +++ b/src/cli/crash_report.zig @@ -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; }