win: unbreak build, use UV_ENOSYS

This commit is contained in:
Ben Noordhuis 2011-10-11 23:17:58 +02:00
parent 61343ecfbd
commit 04daabd58f

View File

@ -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;
}