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 c3c7cea commit fa1896eCopy full SHA for fa1896e
core/src/net/operator/windows/mod.rs
@@ -85,7 +85,7 @@ impl<'o> Operator<'o> {
85
unsafe {
86
let ret = CreateIoCompletionPort(handle, self.iocp, self.cpu, 0);
87
if ret.is_null()
88
- && ERROR_INVALID_PARAMETER == WSAGetLastError().try_into().expect("overflow")
+ && ERROR_INVALID_PARAMETER == WSAGetLastError().try_into::<u32>().expect("overflow")
89
{
90
// duplicate bind
91
return Ok(());
0 commit comments