Skip to content

Commit

Permalink
ci: fix unix_test.v on unix != macos
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Feb 11, 2021
1 parent 8952158 commit 58393bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/net/unix/aasocket.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 58393bd

Please sign in to comment.