From 112b352b03048c59f8d8fa76afdaf03a9c4134d4 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Mon, 3 Jan 2022 22:33:19 -0800 Subject: [PATCH] Update crash_reporter_linux.zig --- src/deps/crash_reporter_linux.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deps/crash_reporter_linux.zig b/src/deps/crash_reporter_linux.zig index 40f2d3c27c..05d4db05c2 100644 --- a/src/deps/crash_reporter_linux.zig +++ b/src/deps/crash_reporter_linux.zig @@ -1,6 +1,6 @@ const std = @import("std"); -pub fn start(_: [*:0]const u8) bool { +pub fn start(_: anytype, _: anytype) bool { std.debug.attachSegfaultHandler(); }