comparison src/http/ngx_http_request.c @ 6964:5d3d9b52327d

Fixed type.
author hucongcong <hucong.c@foxmail.com>
date Mon, 03 Apr 2017 14:29:40 +0800
parents 903fb1ddc07f
children 8801ff7d58e1
comparison
equal deleted inserted replaced
6963:3ff293cfdab8 6964:5d3d9b52327d
2610 2610
2611 2611
2612 static void 2612 static void
2613 ngx_http_writer(ngx_http_request_t *r) 2613 ngx_http_writer(ngx_http_request_t *r)
2614 { 2614 {
2615 int rc; 2615 ngx_int_t rc;
2616 ngx_event_t *wev; 2616 ngx_event_t *wev;
2617 ngx_connection_t *c; 2617 ngx_connection_t *c;
2618 ngx_http_core_loc_conf_t *clcf; 2618 ngx_http_core_loc_conf_t *clcf;
2619 2619
2620 c = r->connection; 2620 c = r->connection;
2650 } 2650 }
2651 2651
2652 rc = ngx_http_output_filter(r, NULL); 2652 rc = ngx_http_output_filter(r, NULL);
2653 2653
2654 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, c->log, 0, 2654 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, c->log, 0,
2655 "http writer output filter: %d, \"%V?%V\"", 2655 "http writer output filter: %i, \"%V?%V\"",
2656 rc, &r->uri, &r->args); 2656 rc, &r->uri, &r->args);
2657 2657
2658 if (rc == NGX_ERROR) { 2658 if (rc == NGX_ERROR) {
2659 ngx_http_finalize_request(r, rc); 2659 ngx_http_finalize_request(r, rc);
2660 return; 2660 return;