commit 4c5578d88300cd90772ebd982ad3e88fa2d1ec05
parent f0d4dcf60d1fa6f30e2c286d26ec16c790372eca
Author: Lorenz (xha) <me@xha.li>
Date: Sat, 11 Nov 2023 10:30:09 +0100
net::unix: remove unused buf
Signed-off-by: Lorenz (xha) <lorenz@xha.li>
Diffstat:
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/net/unix/+freebsd.ha b/net/unix/+freebsd.ha
@@ -41,7 +41,6 @@ export fn connect(
return errors::errno(err);
case int => void;
};
- static let buf: [rt::UNIX_PATH_MAX + 32]u8 = [0...];
return io::fdopen(sockfd);
};
diff --git a/net/unix/+linux.ha b/net/unix/+linux.ha
@@ -41,7 +41,6 @@ export fn connect(
return errors::errno(err);
case int => void;
};
- static let buf: [rt::UNIX_PATH_MAX + 32]u8 = [0...];
return io::fdopen(sockfd);
};