1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix unix_test.v on unix != macos

This commit is contained in:
Delyan Angelov 2021-02-12 01:11:49 +02:00
parent 89521584a2
commit 58393bd3f9
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -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 {