We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c853b4e commit 8777c63Copy full SHA for 8777c63
src/crystal/event_loop/iocp.cr
@@ -240,8 +240,8 @@ class Crystal::EventLoop::IOCP < Crystal::EventLoop
240
create_completion_port(r) unless read_blocking
241
create_completion_port(w) unless write_blocking
242
{
243
- IO::FileDescriptor.new(handle: r, blocking: !!read_blocking)
244
- IO::FileDescriptor.new(handle: w, blocking: !!write_blocking)
+ IO::FileDescriptor.new(handle: r, blocking: !!read_blocking),
+ IO::FileDescriptor.new(handle: w, blocking: !!write_blocking),
245
}
246
end
247
0 commit comments