Skip to content
Snippets Groups Projects
Commit 9dc45f91 authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #2769 from grpc/make_vs2010_happy

Fix compilation under VS 2010
parents bee7b68b deab29e1
No related branches found
No related tags found
No related merge requests found
......@@ -369,14 +369,16 @@ static grpc_endpoint_write_status win_write(grpc_endpoint *ep,
}
static void win_add_to_pollset(grpc_endpoint *ep, grpc_pollset *ps) {
grpc_tcp *tcp;
(void) ps;
grpc_tcp *tcp = (grpc_tcp *) ep;
tcp = (grpc_tcp *) ep;
grpc_iocp_add_socket(tcp->socket);
}
static void win_add_to_pollset_set(grpc_endpoint *ep, grpc_pollset_set *pss) {
grpc_tcp *tcp;
(void) pss;
grpc_tcp *tcp = (grpc_tcp *) ep;
tcp = (grpc_tcp *) ep;
grpc_iocp_add_socket(tcp->socket);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment