aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorHaze Booth <isnt@haze.cool>2020-05-09 08:09:55 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-05-09 12:29:27 -0400
commite79d7e0deda9e74dbaad1aa77db3e041f92f4f71 (patch)
treef9436ec35b2f809582868755661725f89f9dd4fb /lib/std
parentd4d509090b47a3860831a0fb6fb7fae02f5f7857 (diff)
downloadzig-e79d7e0deda9e74dbaad1aa77db3e041f92f4f71.tar.gz
zig-e79d7e0deda9e74dbaad1aa77db3e041f92f4f71.zip
Remove fs.File artifact from connectUnixSocket
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/net.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/net.zig b/lib/std/net.zig
index aa38aeae08..4e6bd03186 100644
--- a/lib/std/net.zig
+++ b/lib/std/net.zig
@@ -377,7 +377,6 @@ pub fn connectUnixSocket(path: []const u8) !fs.File {
return fs.File{
.handle = sockfd,
- .io_mode = std.io.mode,
};
}