diff options
author | 2021-12-22 19:10:41 -0800 | |
---|---|---|
committer | 2021-12-22 19:10:41 -0800 | |
commit | 005a0ec9319c0767f25fc78949078b6122810ea0 (patch) | |
tree | d59f381c61b1a781ddf8f44666dbe18afc38c39d /src | |
parent | 2cfdf293645e50aa8a142a40cf2f1583611d0047 (diff) | |
download | bun-005a0ec9319c0767f25fc78949078b6122810ea0.tar.gz bun-005a0ec9319c0767f25fc78949078b6122810ea0.tar.zst bun-005a0ec9319c0767f25fc78949078b6122810ea0.zip |
Update io_darwin.zig
Diffstat (limited to 'src')
-rw-r--r-- | src/io/io_darwin.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/io_darwin.zig b/src/io/io_darwin.zig index 2042a38ea..6d77878d2 100644 --- a/src/io/io_darwin.zig +++ b/src/io/io_darwin.zig @@ -31,7 +31,7 @@ completed: FIFO(Completion) = .{}, io_pending: FIFO(Completion) = .{}, last_event_fd: std.atomic.Atomic(u32) = std.atomic.Atomic(u32).init(32), -pub fn init(entries: u12, flags: u32) !IO { +pub fn init(_: u12, _: u32) !IO { const kq = try os.kqueue(); assert(kq > -1); return IO{ .kq = kq }; |