windows: fix typo

This commit is contained in:
Saúl Ibarra Corretgé 2014-02-26 09:25:49 +01:00
parent b055538d09
commit b2341e7709

View File

@ -244,7 +244,7 @@ int uv_is_writable(const uv_stream_t* handle) {
int uv_stream_set_blocking(uv_stream_t* handle, int blocking) {
if (stream->type != UV_NAMED_PIPE)
if (handle->type != UV_NAMED_PIPE)
return UV_EINVAL;
if (blocking != 0)