]> git.kaiwu.me - nginx.git/commitdiff
Event pipe: call ngx_handle_read_event() with a proper flags type.
authorSergey Kandaurov <pluknet@nginx.com>
Wed, 3 Jun 2015 16:12:26 +0000 (19:12 +0300)
committerSergey Kandaurov <pluknet@nginx.com>
Wed, 3 Jun 2015 16:12:26 +0000 (19:12 +0300)
The change was missed in f69d1aab6a0f.

src/event/ngx_event_pipe.c

index 8ba247f4a0532bfb20377d0a7723ff9ae6186814..2d0e7d35e044c9dd4f3a3eef6f2148c5908be3c3 100644 (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 ( ;; ) {