Skip to content

Commit

Permalink
Update Windows.zig (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sythivo authored and Cloudef committed Dec 30, 2024
1 parent fec83b4 commit cf3aa78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/aio/Windows.zig
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ fn onThreadTimeout(ctx: *anyopaque, user_data: usize) void {

fn ovlOff(offset: u64) io.OVERLAPPED {
return .{
.Internal = undefined,
.InternalHigh = undefined,
.Internal = 0,
.InternalHigh = 0,
.Anonymous = .{ .Anonymous = @bitCast(offset) },
.hEvent = undefined,
.hEvent = null,
};
}

Expand Down

0 comments on commit cf3aa78

Please sign in to comment.