Skip to content

Commit

Permalink
use 4 space indent for consistency
Browse files Browse the repository at this point in the history
with the rest of the package
  • Loading branch information
tkelman authored May 30, 2017
1 parent 9bcc072 commit b5bc8bb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/ZMQ.jl
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,11 @@ function send(socket::Socket, zmsg::Message, SNDMORE::Bool=false)
wait(socket)
end
else
notify_is_expensive = !isempty(socket.pollfd.notify.waitq)
if notify_is_expensive
get_events(socket) != 0 && notify(socket)
end
break
notify_is_expensive = !isempty(socket.pollfd.notify.waitq)
if notify_is_expensive
get_events(socket) != 0 && notify(socket)
end
break
end
end
end
Expand Down Expand Up @@ -533,11 +533,11 @@ function recv(socket::Socket)
wait(socket)
end
else
notify_is_expensive = !isempty(socket.pollfd.notify.waitq)
if notify_is_expensive
get_events(socket) != 0 && notify(socket)
end
break
notify_is_expensive = !isempty(socket.pollfd.notify.waitq)
if notify_is_expensive
get_events(socket) != 0 && notify(socket)
end
break
end
end
return zmsg
Expand Down

0 comments on commit b5bc8bb

Please sign in to comment.