From 92d2aeea7f5c63a10ebd134d24e95e2cb07360cf Mon Sep 17 00:00:00 2001 From: Sam O'Connor Date: Wed, 20 Jan 2016 09:30:29 +1100 Subject: [PATCH] Typo fix, thanys to @mmaxs, Taken from: https://github.com/JuliaLang/julia/pull/14630 --- base/stream.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/stream.jl b/base/stream.jl index 33f161cd8cb7b..bc06b8126b805 100644 --- a/base/stream.jl +++ b/base/stream.jl @@ -932,7 +932,7 @@ function readbytes!(s::LibuvStream, a::Vector{UInt8}, nb = length(a)) finally s.buffer = sbuf if !isempty(s.readnotify.waitq) - start_reading(x) # resume reading iff there are currently other read clients of the stream + start_reading(s) # resume reading iff there are currently other read clients of the stream end end end