summaryrefslogtreecommitdiff
path: root/src/global.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-03-12 09:55:46 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-03-12 09:55:52 -0700
commit0f4d2bb2375c707182dba8cf2dd7723a2e918e79 (patch)
tree25c71a20325a32cdf61d831103ef3e1837a19bdb /src/global.zig
parent86d3f18707d2ca9318d66deb5867c0e0c917eb60 (diff)
Lots of 0.14 changes
Diffstat (limited to 'src/global.zig')
-rw-r--r--src/global.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/global.zig b/src/global.zig
index c93b35fa0..375c10538 100644
--- a/src/global.zig
+++ b/src/global.zig
@@ -211,9 +211,7 @@ pub const GlobalState = struct {
// often write to a broken pipe to exit the read thread. This should
// be fixed one day but for now this helps make this a bit more
// robust.
- p.sigaction(p.SIG.PIPE, &sa, null) catch |err| {
- std.log.warn("failed to ignore SIGPIPE err={}", .{err});
- };
+ p.sigaction(p.SIG.PIPE, &sa, null);
}
};