Skip to content

Commit 58393bd

Browse files
committed
ci: fix unix_test.v on unix != macos
1 parent 8952158 commit 58393bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vlib/net/unix/aasocket.c.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ const max_sun_path = 104
2424

2525
struct C.sockaddr_un {
2626
mut:
27-
sun_len byte
27+
// sun_len byte // only on macos
2828
sun_family int
29-
sun_path [104]char
29+
sun_path [104]char // on linux that is 108
3030
}
3131

3232
struct C.addrinfo {

0 commit comments

Comments
 (0)