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 b26a3d635..62dd31616 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(_: anytype, _: anytype) bool { +pub fn start(_: anytype) bool { std.debug.attachSegfaultHandler(); return true; } |