Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
win: unbreak build, use UV_ENOSYS
  • Loading branch information
bnoordhuis committed Oct 11, 2011
1 parent 61343ec commit 04daabd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/udp.c
Expand Up @@ -227,7 +227,7 @@ int uv_udp_set_membership(uv_udp_t* handle, const char* multicast_addr,
const char* interface_addr, uv_membership membership) {

/* not implemented yet */
uv__set_sys_error(handle->loop, ENOSYS);
uv__set_artificial_error(handle->loop, UV_ENOSYS);
return -1;
}

Expand Down

0 comments on commit 04daabd

Please sign in to comment.