mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 08:35:47 +00:00
core: Fix clang build pt.3
Should finally resolve building with clang.
This commit is contained in:
parent
2a54a39e0c
commit
c7b6027f34
4 changed files with 6 additions and 16 deletions
|
@ -148,7 +148,7 @@ sockaddr TranslateFromSockAddrIn(SockAddrIn input) {
|
|||
}
|
||||
|
||||
int WSAPoll(WSAPOLLFD* fds, ULONG nfds, int timeout) {
|
||||
return poll(fds, nfds, timeout);
|
||||
return poll(fds, static_cast<nfds_t>(nfds), timeout);
|
||||
}
|
||||
|
||||
int closesocket(SOCKET fd) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue