diff options
author | 2022-01-03 22:46:21 -0800 | |
---|---|---|
committer | 2022-01-03 22:46:21 -0800 | |
commit | 61d6f8f18f4b55ff1cc5ef482ef9c6467879b889 (patch) | |
tree | 158633a6a91f4616adb29fd3c5fe7316192d3949 | |
parent | 6480193c65644efc943b0c8790da15b6b59b147c (diff) | |
download | bun-v0.0.66.tar.gz bun-v0.0.66.tar.zst bun-v0.0.66.zip |
Update crash_reporter_linux.zigbun-v0.0.66
-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; } |