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

Commit

Permalink
unix: fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jan 12, 2012
1 parent 8557644 commit 52fba1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/udp.c
Expand Up @@ -332,7 +332,7 @@ static int uv__bind(uv_udp_t* handle,
goto out;
}
#else
uv__set_sys_error((uv_handle_t*)handle, ENOTSUP);
uv__set_sys_error(handle->loop, ENOTSUP);
goto out;
#endif
}
Expand Down

0 comments on commit 52fba1a

Please sign in to comment.