Skip to content

Commit fb7e1aa

Browse files
committed
Fix from review
1 parent 1b5d77e commit fb7e1aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wolfio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@ int wolfIO_TcpBind(SOCKET_T* sockfd, word16 port)
16241624
#ifdef HAVE_SOCKADDR
16251625
int wolfIO_TcpAccept(SOCKET_T sockfd, SOCKADDR* peer_addr, XSOCKLENT* peer_len)
16261626
{
1627-
return wc_accept_cloexec((int)sockfd, peer_addr, peer_len);
1627+
return (int)wc_accept_cloexec((int)sockfd, peer_addr, peer_len);
16281628
}
16291629
#endif /* HAVE_SOCKADDR */
16301630

0 commit comments

Comments
 (0)