hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

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:
Mnet/unix/+freebsd.ha | 1-
Mnet/unix/+linux.ha | 1-
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); };