Commit 677eee8e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

server: Return void from sock_reselect().

parent b587d02d
......@@ -567,7 +567,7 @@ void sock_init(void)
}
}
static int sock_reselect( struct sock *sock )
static void sock_reselect( struct sock *sock )
{
int ev = sock_get_poll_events( sock->fd );
......@@ -575,7 +575,6 @@ static int sock_reselect( struct sock *sock )
fprintf(stderr,"sock_reselect(%p): new mask %x\n", sock, ev);
set_fd_events( sock->fd, ev );
return ev;
}
static unsigned int afd_poll_flag_to_win32( unsigned int flags )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment