Event pipe: call ngx_handle_read_event() with a proper flags type.

The change was missed in f69d1aab6a0f.
This commit is contained in:
Sergey Kandaurov 2015-06-03 19:12:26 +03:00
parent af50336263
commit 99b2c89404

View File

@ -22,8 +22,8 @@ static ngx_int_t ngx_event_pipe_drain_chains(ngx_event_pipe_t *p);
ngx_int_t
ngx_event_pipe(ngx_event_pipe_t *p, ngx_int_t do_write)
{
u_int flags;
ngx_int_t rc;
ngx_uint_t flags;
ngx_event_t *rev, *wev;
for ( ;; ) {