diff options
Diffstat (limited to 'src/include/port/win32_port.h')
-rw-r--r-- | src/include/port/win32_port.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/port/win32_port.h b/src/include/port/win32_port.h index f4841fb3975..1cf166a570d 100644 --- a/src/include/port/win32_port.h +++ b/src/include/port/win32_port.h @@ -451,7 +451,7 @@ int pgwin32_bind(SOCKET s, struct sockaddr *addr, int addrlen); int pgwin32_listen(SOCKET s, int backlog); SOCKET pgwin32_accept(SOCKET s, struct sockaddr *addr, int *addrlen); int pgwin32_connect(SOCKET s, const struct sockaddr *name, int namelen); -int pgwin32_select(int nfds, fd_set *readfs, fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout); +int pgwin32_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout); int pgwin32_recv(SOCKET s, char *buf, int len, int flags); int pgwin32_send(SOCKET s, const void *buf, int len, int flags); int pgwin32_waitforsinglesocket(SOCKET s, int what, int timeout); |