From b2341e77099393bbdb6a00dc92598c5efb0c3545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 26 Feb 2014 09:25:49 +0100 Subject: [PATCH] windows: fix typo --- src/win/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/stream.c b/src/win/stream.c index 893a44e8..0abca3ad 100644 --- a/src/win/stream.c +++ b/src/win/stream.c @@ -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)