fix warning
This commit is contained in:
parent
46f5e42665
commit
7e0c94706c
2 changed files with 2 additions and 2 deletions
|
@ -1477,7 +1477,7 @@ EXPORTFUNC int os_sock_ioctl( OS_SOCKET s, int cmd, void* argp );
|
|||
EXPORTVAR int os_sock_errno;
|
||||
EXPORTFUNC char *os_sock_getlasterrorstring( void );
|
||||
EXPORTFUNC char *os_sock_strerror( const int sockerrno );
|
||||
EXPORTFUNC int os_sock_select( int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, const struct timeval* timeout );
|
||||
EXPORTFUNC int os_sock_select( int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout );
|
||||
|
||||
/* Memory functions */
|
||||
EXPORTFUNC void *os_memset( void *dest, int c, size_t count );
|
||||
|
|
|
@ -535,7 +535,7 @@ int os_sock_ioctl( OS_SOCKET s, int cmd, void* argp )
|
|||
* Wrapper function for select
|
||||
*/
|
||||
|
||||
int os_sock_select( int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, const struct timeval* timeout )
|
||||
int os_sock_select( int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout )
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
|
Reference in a new issue