Fix test inet_pton call in test_arpa_inet

This commit is contained in:
Harold Brenes
2025-09-29 20:29:34 -04:00
parent c23d30f050
commit 0fdac0bd8c

View File

@@ -21,7 +21,7 @@ test_arpa_inet :: proc(t: ^testing.T) {
dst: [posix.INET6_ADDRSTRLEN]byte
}
res := posix.inet_pton(af, src, &addr, size_of(addr))
res := posix.inet_pton(af, src, &addr)
testing.expect_value(t, res, expect, loc)
if expect == .SUCCESS {