diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-08-04 20:36:34 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-08-07 10:04:52 -0700 |
| commit | 3f8ed5504ef1968611b59282490262450f99165d (patch) | |
| tree | 1d058ebe84d90053ff3ba4c76a804e14ec5a8566 /lib/std | |
| parent | 3837862e5217ebe3056a4628d78b6808e33a1b4f (diff) | |
| download | zig-3f8ed5504ef1968611b59282490262450f99165d.tar.gz zig-3f8ed5504ef1968611b59282490262450f99165d.zip | |
std.net: fix windows build
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/net.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/net.zig b/lib/std/net.zig index 38c0785194..f63aa6dd0a 100644 --- a/lib/std/net.zig +++ b/lib/std/net.zig @@ -1944,7 +1944,7 @@ pub const Stream = struct { pub const Error = ReadError; pub fn getStream(r: *const Reader) Stream { - return r.stream; + return r.net_stream; } pub fn getError(r: *const Reader) ?Error { |
