std.builtin.StackTrace: don't print extra newline after stack trace

This commit is contained in:
r00ster91 2023-05-19 15:12:19 +02:00
parent 5804f3f757
commit 40e002ae2b

View File

@ -56,7 +56,6 @@ pub const StackTrace = struct {
std.debug.writeStackTrace(self, writer, arena.allocator(), debug_info, tty_config) catch |err| {
try writer.print("Unable to print stack trace: {s}\n", .{@errorName(err)});
};
try writer.writeAll("\n");
}
};