1
1

poll: Fixed a build warning on Windows.

Этот коммит содержится в:
Andreas Schneider 2011-01-02 19:23:13 +01:00
родитель c54d6b7f8a
Коммит 73c0cd050e

Просмотреть файл

@ -119,7 +119,7 @@ static WSAPoll_FunctionType wsa_poll;
int win_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) {
if (wsa_poll) {
return (wsa_poll)(fds, nfds, timeout);
return (wsa_poll)((WSAPOLLFD *) fds, nfds, timeout);
}
return SOCKET_ERROR;