Skip to content

Commit

Permalink
fw: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Jan 14, 2025
1 parent a379bc5 commit 5b31e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fw/face/impl/syscalls_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func SyscallGetSocketSendQueueSize(c syscall.RawConn) uint64 {
var err error
val, err = unix.GetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_NWRITE)
if err != nil {
core.Log.Warn("Face-Syscall", "Unable to get size of socket send queue for fd", "fd", fd, "err", err)
core.Log.Warn(nil, "Unable to get size of socket send queue for fd", "fd", fd, "err", err)
val = 0
}
})
Expand Down

0 comments on commit 5b31e6a

Please # to comment.