From 58393bd3f9222029ecbb759ac35110922a70bb48 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 12 Feb 2021 01:11:49 +0200 Subject: [PATCH] ci: fix unix_test.v on unix != macos --- vlib/net/unix/aasocket.c.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/net/unix/aasocket.c.v b/vlib/net/unix/aasocket.c.v index 6a50f111f3..a40639e54a 100644 --- a/vlib/net/unix/aasocket.c.v +++ b/vlib/net/unix/aasocket.c.v @@ -24,9 +24,9 @@ const max_sun_path = 104 struct C.sockaddr_un { mut: - sun_len byte + // sun_len byte // only on macos sun_family int - sun_path [104]char + sun_path [104]char // on linux that is 108 } struct C.addrinfo {