ustream-fd: readability change.

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
Yousong Zhou 2015-06-04 21:41:41 +08:00 committed by Felix Fietkau
parent 9386d0717a
commit cead67c804

View file

@ -119,7 +119,8 @@ static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events)
ustream_fd_read_pending(sf, &more); ustream_fd_read_pending(sf, &more);
if (events & ULOOP_WRITE) { if (events & ULOOP_WRITE) {
if (ustream_write_pending(s)) bool no_more = ustream_write_pending(s);
if (no_more)
ustream_fd_set_uloop(s, false); ustream_fd_set_uloop(s, false);
} }