os.windows: Fix missing correction from #18657

This commit is contained in:
Krzysztof Wolicki 2024-01-27 03:43:04 +01:00 committed by Andrew Kelley
parent 608d5e6fb7
commit 190ea02e0d

View File

@ -432,7 +432,7 @@ pub fn GetQueuedCompletionStatusEx(
.ABANDONED_WAIT_0 => error.Aborted,
.OPERATION_ABORTED => error.Cancelled,
.HANDLE_EOF => error.EOF,
.IMEOUT => error.Timeout,
.WAIT_TIMEOUT => error.Timeout,
else => |err| unexpectedError(err),
};
}