diff options
-rw-r--r-- | src/deps/crash_reporter_linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps/crash_reporter_linux.zig b/src/deps/crash_reporter_linux.zig index 40f2d3c27..05d4db05c 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(); } |