aboutsummaryrefslogtreecommitdiff
path: root/src/network_thread.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/network_thread.zig')
-rw-r--r--src/network_thread.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network_thread.zig b/src/network_thread.zig
index e1c2046a8..60d7d30f9 100644
--- a/src/network_thread.zig
+++ b/src/network_thread.zig
@@ -164,7 +164,7 @@ pub fn schedule(this: *@This(), batch: Batch) void {
const one = @as([8]u8, @bitCast(@as(usize, batch.len)));
_ = std.os.write(this.waker.fd, &one) catch @panic("Failed to write to eventfd");
} else {
- this.waker.wake() catch @panic("Failed to wake");
+ this.waker.wake();
}
}